body{
    background-color: #e9e9e9 ;
        font-family: 'Cardo', serif;
}
header{
    display: flex;
    justify-content: space-between;
    margin: 5px 60px;
}
header ul{
    list-style: none;
    padding: 0;
}
header li{
    display: inline;
    margin-left: 20px;
    font-size: 25px;

}
header a.active{
    color: rgb(71, 96, 117);
}
header a{
    color: black;
    text-decoration: none;
    transition: 150ms all ease-in-out;
}
header a:hover{
    color: rgb(71, 96, 117);

}
button{
    border: none;
        background-color: #e9e9e9;
        margin: 0px 0;
}
header img{
    width: 5em;
        border-radius: 50%;
  filter: grayscale(100%);

}
.menu1, .menu2, .menu3{
  height: 2px;
  background-color: black;
  margin: 6px 0;
}
.menu1{
  width: 30px;
    margin-top: 2px;
}
.menu2{
    width: 24px;
}
.menu3{
 width: 18px;
}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: #e9e9e9;
min-width: 100px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 1;
}
.dropdown-content a{
    display: block;
    text-align: center;
    color: black;
      padding: 10px;
      text-decoration: none;
        padding-top: 0;
}
.dropdown:hover{
        cursor:pointer;

}
.dropdown:hover .dropdown-content {
    display: block;}
.container{
    max-width: 1400px;
    height: auto;

}
.hero{
    text-align: center;
    padding: 20px 30px 50px 30px;
}
h1{
font-family: 'Quattrocento', serif;
font-size: 40px;
font-weight: 501;
}
.hero p{
    display: block;
    width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}
.hero button{
    background-color: black;
border: 1px solid black;
    border-radius: 5px;
    padding:7px 20px;
    opacity: 0.8;
    margin-top: 20px;
    transition: 150ms all ease-in-out;
    color: #e9e9e9;
    
}

.hero button:hover{
border-color: black;
    background-color: #e9e9e9;
    color: black;

opacity: 1;
}
.skills{
    margin-top: 30px;
display: grid;
grid-template-columns: repeat(3, 1fr);}
.tech, .tools{
    border-right: 1px solid black;
}
.skills h4{
    text-align: center;
    font-size: larger;
    font-weight: 350;
    opacity: 0.8;
    text-decoration: underline;
}
.skills li{
    list-style: none;
 margin-bottom: 5px;
    text-align: center;
}
footer{
    margin-top: 50px;
}
.footerEl{
    padding-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    align-items: center;
    background-color: black;
    color: #e9e9e9 ;
    border-radius: 2px;
}
footer a{
    text-decoration: none;
        color: #e9e9e9 ;
        transition: 150ms all ease-in-out;
}
footer a:hover{
    cursor: pointer;
    text-decoration: underline;

}
@media screen and (max-width:800px){
.container{
    width: 100%;
    margin: 5px auto;
}

.hero{
    padding: 30px 0;
}
.hero{
    padding-top: 25px;
}



        }
