* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

#main{
    height: 60px;
    width: 100%;
    background-color: black;

}
#center{
    display: flex;
    padding: 25px 0;
    justify-items: center;
    justify-content: center;
}
#center img{
    height: 250px;
    width: 200px;
    margin-right: 160px;
    border-radius: 50%;
}
#nav{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-right: 15px;
    padding: 0 30px;
} 
#nav h4{
    color: white;
    font-size: 15px;
    font-weight: 700;

}
#nav i{
    color: white;
    background-color: grey;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}
#nav i:hover{
    opacity: 1;
    background-color: rgb(0, 149, 255);
}

#center h1{
    font-size: 30px;
    font-weight: 300;
    padding-left: 100px;
    line-height: 50px;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 70px;
    display: flex;
    justify-content: space-between;
    
}
#center-in{
    height: 180px;
    padding-left: 20px;
    width: 95%;
    margin-top: 20px;
    display: flex;
    font-size: 10px;
    justify-content: space-between;
    cursor: pointer;
}
#center-in p{
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;

}
#right{
    width: 20%;
}
.elem{
    padding: 10px 0;
    border-top: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.elem a{
    color: black;
    text-decoration: none; 
    font-size: 20px;
    font-weight: 600;
}
.elem:hover i{
    opacity: 1;
    color: rgb(0, 162, 255);
}
.elem:hover a{
    text-transform: uppercase;
    color: rgb(0, 162, 255);
}
#bottom{
    height: 200%;
    width: 100%;
    background-image: url(https://images.unsplash.com/photo-1604514628550-37477afdf4e3?q=80&w=1854&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: 0 48%;
    background-size: cover;
}