@import url('https://fonts.googleapis.com/css2?family=Sedan+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Briem+Hand:wght@100..900&family=Sedan+SC&display=swap');

body{
    padding: 0;
    border: 5px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.nav{
    width: 100%;
    display: flex;
    animation: header 1s ease-in-out;
}
@keyframes header{
    0%{
        transform: translateY(-100%);
    }
}
.nav p{
    width: 50%;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(5, 178, 246, 0.548);
    margin-left: 9%;
}
.nav ul{
    margin-top: 2%;
    margin-left: 20%;
    width: 50%;
    list-style: none;
    display: flex;
}
.nav ul li{
    margin-right: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}
.nav ul li a{
    color: black;
    text-decoration: dotted;
}
.nav ul li:hover{
    /* border-bottom-style:1px solid ;
    border-bottom-color:rgba(112, 185, 213, 0.696); */
    transform: skew(-20deg);
    font-weight: 700;
}

.about-me{
    max-width: 100vw;
    height: 90vh;
    display: flex;
    position: relative;
}
.about-me .about{
    width: 50%;
    height: 100%;
    animation: text 2s ease-in-out;
}
@keyframes text{
    0%{
        transform: translateX(-100%);
    }
}
.about-me .about .btns{
    position: absolute;
    top: 60%;
    left: 15%;
    width: 40%;
    height: 10%;
}
.about-me .about .btns .btn{
    font-size: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(rgb(114, 181, 228), rgb(38, 115, 132));
    margin-right: 10%;
    padding: 7px;
    color: white;
    font-family: "Briem Hand", cursive;
    border-radius: 30% 0 30% 0;
}
.about-me .about .btns .btn:hover{
    box-shadow: 5px 5px 7px rgba(0, 0, 0 ,0.6);
}
.about-me .about h2{
    position: relative;
    font-size: 5rem;
    top: 10%;
    text-align: center;
    transform: translateY(70%);
    font-family: "Briem Hand", cursive;
}
.about-me .about h2 span{
    color: skyblue;
}
.about-me .about p{
    position: relative;
    top: 12%;
    text-align: center;
    font-size: 20px;
    transform: translateY(60%);
    font-family: "Sedan SC", serif;
}
.about-me .image-of-me{
    height: 100%;
    width: 50%;
    animation: image 2s ease-in-out;
}
@keyframes image{
    0%{
        transform: translateX(100%);
    }
}
.about-me .image-of-me img{
    object-fit:cover;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: relative;
    transform: translateY(25%);
    margin-left: 20%;
    box-shadow: -10px 10px 5px skyblue;
}

.project{
    text-align: center;
    font-size: 3rem;
    font-family: "Sedan SC", serif;
}

.projects{
    max-width: 100vw;
    height: 100vh;
    display: grid;
    grid: 350px / auto auto auto;
    grid-template-columns: repeat(3, minmax(0,1fr));
    position: relative;
    grid-template-rows: 50% 50%;
}
.projects .p1{
    margin: 30px;
    max-width: 50vw;
    max-width: 50vh;
    border: 2px solid skyblue;
}
.projects .p1 .symbosium{
    width: 100%;
    height: 80%;
}
.projects img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    cursor: pointer;
}
.projects img:hover{
    transform: scale(0.9);
    box-shadow: 5px 5px 5px skyblue;
}
.projects .p1 h4{
    text-align: center;
    margin-left: 10px;
    margin-bottom: 3px;
    color: skyblue;
    font-weight: bold;
    font-size: 15px;
}
.projects .p1 p{
    font-size: 12px;
    margin: 2px;
    text-align: center;
}

.skills{
    max-width: 100vw;
    height: 80vh;
    position: relative;
    left: 10%;
}
.skills .html{
    width: 70%;
    height: 30px;
    background-color: rgb(235, 228, 228);
    border-radius: 15px;
}
.skills .html .html-color{
    width: 90%;
    height: 30px;
    background-color: skyblue;
    color: black;
    border-radius: 15px;
}
.css-main{
    width: 100%;
    height: 30px;
    display: flex;
    padding: 20px;
    font-family: "Briem Hand", cursive;
}
.css-main .css{
    width: 70%;
    height: 30px;
    background-color: rgb(235, 228, 228);
    border-radius: 15px;
}
.css-main .css .css-clr{
    width: 80%;
    height: 30px;
    background-color: skyblue;
    color: black;
    border-radius: 15px;
}
.skills .css-main p{
    width: 30%;
    font-size: 15px;
    margin-left: 30px;
    font-weight: bold;
}
.js-main{
    width: 100%;
    height: 30px;
    display: flex;
    padding: 20px;
    font-family: "Briem Hand", cursive;
}
.js-main .js{
    width: 70%;
    height: 30px;
    background-color: rgb(235, 228, 228);
    border-radius: 15px;
}
.js-main .js .js-clr{
    width: 75%;
    height: 30px;
    background-color: skyblue;
    color: black;
    border-radius: 15px;
}
.skills .js-main p{
    width: 30%;
    font-size: 15px;
    margin-left: 30px;
    font-weight: bold;
}
.python-main{
    width: 100%;
    height: 30px;
    display: flex;
    padding: 20px;
    font-family: "Briem Hand", cursive;
}
.python-main .python{
    width: 70%;
    height: 30px;
    background-color: rgb(235, 228, 228);
    border-radius: 15px;
}
.python-main .python .python-clr{
    width: 85%;
    height: 30px;
    background-color: skyblue;
    color: black;
    border-radius: 15px;
}
.skills .python-main p{
    width: 30%;
    font-size: 15px;
    margin-left: 30px;
    font-weight: bold;
}
.golang-main{
    width: 100%;
    height: 30px;
    display: flex;
    padding: 20px;
    font-family: "Briem Hand", cursive;
}
.golang-main .golang{
    width: 70%;
    height: 30px;
    background-color: rgb(235, 228, 228);
    border-radius: 15px;
}
.golang-main .golang .go-clr{
    width: 50%;
    height: 30px;
    background-color: skyblue;
    color: black;
    border-radius: 15px;
}
.skills .golang-main p{
    width: 30%;
    font-size: 15px;
    margin-left: 30px;
    font-weight: bold;
}
.sql-main{
    width: 100%;
    height: 30px;
    display: flex;
    padding: 20px;
    font-family: "Briem Hand", cursive;
}
.sql-main .sql{
    width: 70%;
    height: 30px;
    background-color: rgb(235, 228, 228);
    border-radius: 15px;
}
.sql-main .sql .sql-clr{
    width: 80%;
    height: 30px;
    background-color: skyblue;
    color: black;
    border-radius: 15px;
}
.skills .sql-main p{
    width: 30%;
    font-size: 15px;
    margin-left: 30px;
    font-weight: bold;
}
.ui-main{
    width: 100%;
    height: 30px;
    display: flex;
    padding: 20px;
    font-family: "Briem Hand", cursive;
}
.ui-main .ui{
    width: 70%;
    height: 30px;
    background-color: rgb(235, 228, 228);
    border-radius: 15px;
}
.ui-main .ui .ui-clr{
    width: 90%;
    height: 30px;
    background-color: skyblue;
    color: black;
    border-radius: 15px;
}
.skills .ui-main p{
    width: 30%;
    font-size: 15px;
    margin-left: 30px;
    font-weight: bold;
}
.skills .main p{
    width: 30%;
    font-size: 15px;
    margin-left: 30px;
    font-weight: bold;
}
.skills .main{
    width: 100%;
    height: 30px;
    display: flex;
    padding: 20px;
    font-family: "Briem Hand", cursive;
}

.abut{
    max-width: 100vw;
    height: 80vh;
    display: flex;
}
.abut .photo{
    width: 50%;
    height: 100%;
    position: relative;
}
.abut .photo div img{
    width: 500px;
    height: 500px;
    border-radius: 50%;
    transform: translateX(70%);
    transform: translateY(15%);
    position: absolute;
    left: 20%;
    box-shadow: 10px 10px 7px skyblue;
    object-fit: cover;
    filter: brightness(1.2);
}
.abut .details{
    width: 50%;
    height: 100%;
    position: relative;
}
.abut .details p{
    text-align: center;
    justify-content: center;
    font-size: 30px;
    position: absolute;
    font-family: "Sedan SC", serif;
    top: 10%;
    padding: 30px;
    color: rgb(54, 113, 137);
}

.Contact-me{
    width: 80vw;
    height: 10vh;
    position: relative;
    transform: translateX(10%);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    font-size: 15px;
    justify-content: space-around;
}
.Contact-me img{
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.Contact-me p:hover{
    color: skyblue;
    cursor: pointer;
    text-shadow: 3px 3px 5px;
}
.Contact-me a{
    text-decoration: none;
    color: black;
}

footer{
    background-color: rgba(86, 190, 231, 0.634);
    max-width: 100vw;
    height: 25px;
    bottom: 0;
}
footer p{
    text-align: center;
    font-size: 14px;
}
