body {
    background-color: rgb(7, 7, 7);
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: large;
}

nav {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    background: linear-gradient(180deg, rgba(253, 252, 252, 0.982), rgba(8, 8, 8, 0.2));
    display: flex;
    margin:20px 5% 20px 5%;
    justify-content: space-around;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    height: 50px;
    width: 90%;
    border: 2px solid rgb(0, 2, 2);
    border-radius: 10px;
    
}
nav:hover{
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
    text-shadow: white;
}

nav a {
    color: rgb(1, 1, 1);
    text-decoration: none;
    font-weight:bolder;
}
nav a:hover {
    color: rgb(242, 243, 240);
    text-decoration: underline;
    font-weight:bolder;
    font-size:30px ;

}

.about {
    background: linear-gradient(120deg, rgba(253, 252, 252, 0.982), rgba(8, 8, 8, 0.2));
    
    display: flex;
    flex-direction: column;
    height: auto;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 0px;
    margin-bottom: 20px;
    padding:10px;
    border-radius: 10px;
    
}
.about:hover{
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
}
.about .child1{
   
    height:40px;
}
.about .child2{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
  
}
.about .child2 p{
    width:50%;
}
.about img {
    width: 25%;
    height: 250px;
    margin:0px;
}
.education{
    background: linear-gradient(150deg, rgba(253, 252, 252, 0.982), rgba(8, 8, 8, 0.2));
    width:90%;
    height:auto;
    margin-left: 5%;
    margin-right:5%;
    margin-bottom: 20px;
    padding: 10px;
    border-radius:10px;
    
}
.education:hover{
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
}
.skills{
    background: linear-gradient(150deg, rgba(253, 252, 252, 0.982), rgba(8, 8, 8, 0.2));
    width:90%;
    border-radius:10px;
    height:auto;
    margin-left: 5%;
    margin-right:5%;
    padding: 10px;
}
.skills:hover{
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
}
.projects{
    background: linear-gradient(90deg, rgba(253, 252, 252, 0.982), rgba(8, 8, 8, 0.2));
    border-radius: 10px;
    width:90%;
    height:auto;
    margin-left: 5%;
    margin-right:5%;
    padding: 10px;
    margin-top: 20px;
}
.projects:hover{
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
    background: linear-gradient(150deg, rgba(250, 249, 249, 0.982), rgba(7, 2, 2, 0.2));
}
.projects .container{
    display: flex;
    height:50px;
    padding:15px;
    border-radius:10px;
    background-color: transparent;
    align-content:center;
    justify-content: space-around;
}
.projects .container button{
    border-radius:10px;
    background-color: rgb(251, 252, 249);
    padding:10px;
    font-weight: bold;
}
.projects .container button:hover{
    background-color: rgb(1, 1, 1);
    color: aliceblue;
    font-size: 20px;
    font-weight: bolder;
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
}
.projects .container .btn1:hover{
    background-color: rgb(1, 1, 1);
    color: aliceblue;
    font-size: 20px;
    font-weight: bolder;
    box-shadow: 5px 5px 15px rgb(21, 19, 19);
}
.projects .container .btn2:hover{
    background-color: rgb(1, 1, 1);
    color: aliceblue;
    font-size: 20px;
    font-weight: bolder;
    box-shadow: 5px 5px 15px rgb(21, 19, 19);
}

.internships{
    background: linear-gradient(120deg, rgba(253, 252, 252, 0.982), rgba(8, 8, 8, 0.2));
    width:90%;
    height:auto;
    margin-left: 5%;
    margin-right:5%;
    padding: 10px;
    margin-top: 20px;
    border-radius:10px;
    padding-bottom: 20px;;
}
.internships:hover{
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
    
}
.acheivements{
    background: linear-gradient(150deg, rgba(247, 245, 245, 0.982), rgba(8, 8, 8, 0.2));
    border-radius:10px;
    width:90%;
    height:auto;
    margin-left: 5%;
    margin-right:5%;
    padding: 10px;
    margin-top: 20px;
}
.acheivements:hover{
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
}
.contacts{
    background: linear-gradient(150deg, rgba(247, 245, 245, 0.982), rgba(8, 8, 8, 0.2));
     border-radius:10px;
    width:90%;
    height:auto;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 20px;
    margin-top: 20px;
    padding:20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-weight: bold;
}
.contacts .links{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.contacts:hover{
    box-shadow: 5px 5px 15px rgb(243, 238, 238);
}
.contacts a{
    color:black;
    text-decoration: none;
}
.contacts a:hover{
    color:aliceblue;
}

