/* CSS */
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}
body{
    background:#ffffffdc ;
    color: black;
}
#header{
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    background-size: cover;
    background-position: center;
}

.container{
    padding: 10px 5%;
}
.container:hover{
    background-color: rgba(213, 214, 214, 0.932);
}


nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav p{
    display: inline-block;
    position: absolute;
    margin: 10% 5%;
    color: rgb(12, 12, 12);;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 10px;
}


nav ul li a{
    color: rgb(12, 12, 12);
    text-decoration: none;
    font-size: 20px;
    position: relative;
}

nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #3b85dadc;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}
.header-text{
    margin-top: 5px;
    margin-left: 10%;
    font-size: 25px;
}

hr{
    margin-top: 15px;
    width: 100%;
}
.body-text{
    padding: 90px 15%;
    display: inline-flex;
   }



.social-icon{
    margin-top: 30px;
}
.social-icon a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
}

.hobby{
    text-align: center;
}
.feed{
    text-align: center;
}

