@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    transition: 1s;
    scroll-behavior: smooth;
}
body{
    position: relative;
    background-color: #eee;
    font-family: "Nunito", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
aside{
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100px;
    padding: calc(100vh / 4 + 10px ) 10px ;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    right: 0;
    background-color: #ffffff;
    animation-name: ver;
    animation-duration: 3s;
}
@media screen and (max-width:718px) {
    .hun{
        width: 100%;
    }
    .hun{
        height: auto;
        padding: 2px;
        width: 100%;
    }
    aside{
        flex-direction:row;
        justify-content: center;
        background-color: #ffffff79;
        backdrop-filter: blur(5px);
        width: 100%;
        height: auto;
        padding: 10px;
        top: 0;
        animation-name: none;
    }
}
aside img{
    height: calc(100vh / 3 - 150px);
}
aside a{
    border-radius: 10px;
    padding: 10px;
}
aside a:hover{
    background-color: #00000034;
}
section{
    height: 100vh;
    padding: 100px;
    width: calc(100vw - 100px);
}
.head{
    display: flex;
    justify-content: center;
    align-items: center;
}
.head .content{
    width: 100%;
}
.head .headimage{
    width: 100%;
    direction: rtl;
}
.head b{
    text-decoration:underline;
}
.head .headimage img{
    right: 0;
    width: 50%;
    box-shadow: 0px 0px 50px #00000065;
    border-radius: 100%;
    animation-name: wer;
    animation-duration: 6s;
}
.projects .rows .row img{
    width: 100%;
}
.projects .rows .row:hover{
    box-shadow: 0 0 80px #0000009a;
    max-width: 32%;
}
.projects .rows .row{
    min-width: 250px;
    max-width: 30%;
    border: 1px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px #0000009a;
}
.projects .rows .row h2{
    padding: 10px;
}
.projects .rows .row p{
    padding: 10px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    line-height: 2rem;
}
a{
    text-decoration: none;
    color: #000;
}
.projects .rows{
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}
@keyframes wer{
    from{
        opacity: 0;
        width: 0;
        box-shadow: 0px 0px 0px #00000065;
    }
    to{
        width: 50%;
        opacity: 100%;
        box-shadow: 0px 0px 50px #00000065;
    }
}
@keyframes ver{
    from{
        right: -100px;
    }
    to{
        right: 0;
    }
}
.contact{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}
.contact .link a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact .link:hover{
    background-color: #ffffffa4;
    border: 5px solid #000;
    border-radius: 10px;
    box-shadow: 0 0 80px #0000009a;
    font-size: 1.5rem;
}
.contact .link{
    width: 25%;
    padding: 20px 50px;
    border-radius: 10px;
    background-color: #fffffff3;
    text-align: center;
    box-shadow: 0 0 10px #0000009a;
    transition: 0.25s;
}
h1{
    font-size: 2rem;
    font-weight: 700;
}
b{
    font-weight: 900;
    color: #202020;
}
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }
.revealx{
    position: relative;
    transform: translateX(100px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .revealx.active{
    transform: translateX(0);
    opacity: 1;
  }
.contact-me{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
.enterview{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.enterview video{
    width: 100vw;
}
::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #ffffff;
  }
  ::-webkit-scrollbar-thumb {
    background: #000000;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #000000c7;
  }
.enr{
    background-color: #fff;
    height: 100%;
}
.enr video{
    width: 100%;
}
.foot b{
    color: #fff;
}
.foot{
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 5rem;
}

.splash{
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.splash h1{
    font-size: 4rem;
    animation-name: hey;
    animation-duration: 0.5s;
}
@keyframes hey {
    from{
        font-size: 0rem;
    }
    to{
        font-size: 4rem;
    }
}