body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#header{
    display: flex;
    justify-content: space-between;
}
#header > div:nth-child(2){
    width: 35%;
    display: flex;
    justify-content: space-between;
    color: #767676;
}
#header > div:nth-child(3){
    padding: 10px 15px;
    color: #767676;
}
.logo-img{
    height: 40px;
    width: 40px;
    padding: 8px;;
}
a{
    color: #767676;
    text-decoration: none;
}
a:hover{
    color: black;
}
#header p:hover{
    color: black;
}
#title{
    text-align: center;
    padding: 104px 12px 56px;
}
#title > h1{
    font-size: 56px;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
}
#title > p{
    font-size: 26px;
    font-weight: 400;
    line-height: 1.35;
    color: #767676;
}

#featured{
    width: 90%;
    margin: auto;
    margin-bottom:150px;
}
#featured > div{
    display: flex;
    justify-content: space-between;
}
#featured > div > div{
    width: 49%;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}
#featured > div > div:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
#featured > div > div > img{
    width: 100%;
    height: 350px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#featured > div > div > p{
    padding-left: 20px;
}
#featured > div > div > h3+p{
    color: #767676
}
#featured > div > div > h3{
    font-size: 37px;
    font-weight: 800;
    line-height: 1.2;
    padding-left: 20px;
    margin-top: -10px;
    width: 70%;
}
h1{
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;   
    letter-spacing: 1.3px;
}
#latest{
    width: 90%;
    margin: auto;
}
#latest > div{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 420px);
    gap: 20px;
    margin-top:50px;
}
#latest > div > div:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
#latest > div > div{
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}
#latest > div > div > img{
    width: 100%;
    height: 235px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#latest > div > div > p{
    padding-left: 20px;
}
#latest > div > div > h3+p{
    color: #767676
}
#latest > div > div > h3{
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    padding-left: 20px;
    margin-top: -10px;
    width: 70%;
}
#btn-div{
    padding: 100px;
    width: 10%;
    margin: auto;
}
#btn-div > button{
    padding: 20px 10px;
    background-color: #fff;
    border:none;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    color: #767676;
    font-size: 15px;
}
#btn-div > button:hover{
    border: 1px solid black;
    color: black;
}
#footer{
    width: 87%;
    margin:auto;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid #767676;
    padding:20px 0;
}
#footer-img{
    height: 24px;
    width: 24px;
    padding-top:20px;
    padding-right: 15px;
}
#footer > div:nth-child(1){
    display: flex;
    justify-content: space-evenly;
   
}
#footer > div:nth-child(2){
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto;
    padding-top:20px;
    color: #767676;
}
#footer > div:nth-child(1) > p{
    font-size:15px;
    padding-top:6px;
}
