*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    list-style: none;
    transition: all 300ms;
    user-select: none;
    /* overflow: hidden; */
}
::-webkit-scrollbar{
    display: none;
}
a{
    text-decoration: none;
    color: white;
}
h1, h2, h3, h4, h5, h6{
    text-align: center;
}
.main{
    height: 100%;
    width: 100%;
}

.page{
    min-height: 100vh;
    width: 100%;
    scroll-snap-align: start;
}
                            /* Home Page */
#home{
    height: 100vh;
    width: 100%;
    background-image: url(images/BG3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    scroll-snap-align: start;
    color: white;
}
.intro{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#home h1{
    color: white;
    font-size: 2.5em;
    text-align: center;
}
.name{
    color: yellow;
}
.hello-emoji{
    display: inline-block;
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
}
#upArrow{
    width: 2rem;
    position: absolute;
    top: 95%;
    left: 50%;
    animation: up 1s infinite;
}
.btns{
    display: flex;
    align-items: center;
    justify-content: center;
}
#work {
font-family: inherit;
display: inline-block;
width: 8em;
height: 2.6em;
line-height: 2.5em;
margin: 20px;
position: relative;
overflow: hidden;
border: 2px solid black;
transition: color .5s;
z-index: 1;
font-size: 17px;
border-radius: 6px;
font-weight: 500;
/* color:  */
font-weight: bold;
cursor: pointer;
}
#work::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    /* background-color: #212121; */
    background-color: transparent;
    transition: 0.5s;
    transform-origin: center;
}
#work::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: yellow;
    height: 150px;
    width: 200px;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: all .7s;
}
#work:hover:before {
    top: -30px;
    left: -30px;
}
#work a{
    color: black;
}

                            /* navbar */
nav{
    width: 100%;
    height: 7vh;
    background-color: #1B242F;
    border-bottom: 2px solid yellow;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}
nav ul li a{
    font-size: 1.2rem;
    font-weight: bold;
}
                            /* About Page */
#about{
    background-color: #31333B;
    color: yellow;
    overflow: hidden;
    padding-top: 5vh;
}
.heading{
    /* color: #444649; */
    text-align: center;
    /* margin-top: 5%; */
    font-size: 3.5em;
}
#underline{
    width: 7%;
    margin: auto;
    height: 1vh;
    background-color: black;
    border: none;
    outline: none;
}
#vertLine{
    width: 0.2rem;
    height: 5rem;
    background-color: #444649;
}
.speciality{
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    text-align: center;
    color: #444649;
}
.speciality span img{
    width: 10vw;
    border: 2px solid black;
    border-radius: 20px;
}
.speciality-gif h3{
    font-size: 1.4rem;
    color: yellow;
}
.speciality-gif p{
    font-size: 1rem;
    color: yellow;
}
.main-about{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10vh
}
/* About Me */
.aboutMe{
    width: 100%;
    min-height: 40vh;
    padding: 0 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10vw;
    margin-top: 15vh;
}
.aboutMe-left{
    height: 60vh;
}
.aboutMe-right p{
    width: 70%;
    font-weight: bold;
    line-height: 2;
}
.aboutMe-left img{
    height: 100%;
    width: auto;
}
                        /* Skills */
#skills{
    background-color: #3f4044;
    color: yellow;
    padding-top: 5vh;
    margin-bottom: 5vh;
    min-height: 100vh;
    width: 100%;
}
.skills-main{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vh;
    margin-top: 5vh;
}
.skills-img{
    width: 10%;
    height: auto;
    border: 2px solid black;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 10px #232323ab;
    transform: translateY(-10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skills-img:hover{
    transform: translateY(-15px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.skills-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 5vh;
}
                        /* Contact */
#contact{
    background-color: royalblue;
}