*body{
    background-color: #F1FFE7;
}
/* NAVIGATION BAR */
.navbar{
    height: 40px;
    background-color: #1B2D2A;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 50px 20px 10px 2px;
    box-shadow: 8px 8px 8px 8px rgba(0,0,240,0.3);
    position: fixed;
    top:0px;
    left:0px;
    right:0px;
}
#heading{
    background-color: #1B2D2A;
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-size: 22px;
    margin-right: 150px;
}
#item1{
    background-color: #1B2D2A;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 1s ease-in-out 0s;
}
#item1:hover{
    transform: scale(1.2);
    text-decoration: underline;
}
#item2{
    background-color: #1B2D2A;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 1s ease-in-out 0s;
}
#item2:hover{
    transform: scale(1.2);
    text-decoration: underline;
}
.item{
    background-color: #1B2D2A;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 1s ease-in-out 0s;
}
.item:hover{
    transform: scale(1.2);
    text-decoration: underline;
}
#mode{
    background-color: #1B2D2A;
    color: white;
}

/* HOME SECTION */
.container{
    display: flex;
    gap: 30px;
    margin: 10px 100px 0px 100px;

}
.con1{
    height: 400px;
    width: 550px;
}
.con2{
    height: 400px;
    width: 400px;
    background-image: url(media/profile_photo1.jpeg);
    background-size: cover;
    border: solid;
    border-color: #1B2D2A;
    border-width: 10px;
    border-radius: 50%;
    transition: all 1s ease-in-out 0s;
    box-shadow: 8px 8px 8px 8px rgba(0,0,240,0.3);
}
@keyframes photo {
    0%{background-image: url(media/profile_photo1.jpeg);}
    100%{background-image: url(media/profile_photo2.jpeg);}    
}
.con2:hover{
    transform: scale(1.05);
    animation: photo 3s ease-in 0s infinite alternate;
}
button{
    transition: all 1s ease-in-out 0s;
}
button:hover{
    transform: scale(1.3);
}
#name{
    padding: 90px 40px 0px 40px;
    font-size: 50px;
    color: #4A4882;
}
#about{
    padding: 0px 50px 0px 50px;
    font-size: 20px;
    color: #4A4882;
}
button{
    display: inline-block;
    margin-left: 50px;
    background-color: #4A4882;
    color: white;
}
/* ABOUT SECTION */
#about-section{
    font-size: 40px;
    text-align: center;
    margin: 40px 0px 50px 0px;
    font-weight: bold;
    color: #4A4882;
    transition: all 1s ease-in-out 0s;
}
#about-section:hover{
    text-decoration: underline;
    transform: scale(1.1);
    color: #1B2D2A;
}
.container1{
    display: flex;
    margin: 20px 140px;
    gap: 50px;
}
.box1{
    height: 380px;
    width: 380px;
    background-image: url(media/pic.jpg);
    background-size: cover;
    border: 10px solid #1B2D2A;
    border-radius: 10px;
    box-shadow: 8px 8px 8px 8px rgba(0,0,240,0.3);
}
/* SKILL SECTION */
.box2{
    height: 380px;
    width: 480px;
    /* background-color: blue; */
    color: #4A4882;
    font-size: 20px;
    padding: 25px 25px 0px 25px;
}
#skills-section{
     font-size: 40px;
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    color: #4A4882;
    transition: all 1s ease-in-out 0s;
}
#skills-section:hover{
    text-decoration: underline;
    transform: scale(1.1);
    color: #1B2D2A;
}
.container2{
    display: flex;
    margin: 100px 150px 0px 150px;
    gap: 30px;
}
.skills{
    height: 150px;
    width: 150px;
    padding: 20px 0px 0px 0px;
    font-size: 30px;
    text-align: center;
    border-style: solid;
    border-color: #1B2D2A;
    border-radius: 10px;
    border-width: 5px;
    color: #4A4882;
    transition: all 1s ease-in-out 0s;
}
.skills:hover{
    text-decoration: underline;
    transform: scale(1.1);
    color: #1B2D2A;
    border-color: #4A4882;
}
.fa-brands{
    font-size: 100px;
}

/* CONTACT SECTION */
.container3{
    display: flex;
    gap: 10px;
}
#contact-section{
     font-size: 40px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #4A4882;
    transition: all 1s ease-in-out 0s;
}
#contact-section:hover{
    text-decoration: underline;
    transform: scale(1.1);
    color: #1B2D2A;
}

.contact{
    height: 400px;
    background-color: #1B2D2A;
    text-align: center;
    color: white;
}
.fa-solid{
    font-size: 40px;
    background-color: #1B2D2A;
    color: white;
    transition: all 1s ease-in-out 0s;
}
.fa-solid:hover{
    transform: scale(1.3);
}
.footer-icons{
    font-size: 40px;
    margin: 30px 0px 0px 0px;
    background-color: #1B2D2A;
    color: white;
    transition: all 1s ease-in-out 0s;
}
.footer-icons:hover{
    transform: scale(1.3);
}


@media (max-width: 400px)and(max-width:600px) {
    .container, .container1, .container2 {
    flex-direction: column;
    margin: 10px;
    gap: 20px;
}
}