@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
}

html::-webkit-scrollbar {
    display: none;
}

html, .all-content {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */

    scroll-behavior: smooth;
    scroll-snap-stop: always;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: white;
    background-color: rgb(1, 8, 32);
    overflow-x: hidden;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.hamburger-menu {
    height: 3rem;
    width: 3.5rem;
    padding: 0.5rem;
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
}


.ham-1 {
    width: 100%;
    height: 0.25rem;
    background-color: rgb(255, 255, 255);

    transition: 0.2s;
}

.ham-1-tilt {
    transform: rotate(45deg) translateY(0.6rem) translateX(0.6rem);
    background-color: coral;
}


.ham-2 {
    width: 100%;
    height: 0.25rem;
    background-color: rgb(255, 255, 255);

    transition: 0.1s;
}

.ham-2-tilt {
    width: 0rem;
    background-color: coral;
}



.ham-3 {
    width: 100%;
    height: 0.25rem;
    background-color: rgb(255, 255, 255);

    transition: 0.2s;
}

.ham-3-tilt {
    transform: rotate(-45deg) translateY(-0.6rem) translateX(0.6rem);
    background-color: coral;
}


/* navbar section of webpage */

.navbar {
    position: absolute;

    margin: 2rem 2rem 0rem 0rem;

    right: 0%;
    width: 15rem;
    height: 40vh;

    z-index: 99;
}

.nav-links {
    position: absolute;

    background-color: white;
    width: 100%;
    height: 100%;
    border-radius: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

    transition: 0.2s;
}

.nav-cover {
    width: 100%;
    height: 0%;

    transition: 0.2s;
}

.nav-cover > * {
    display: none
}


.navlink {
    font-weight: 700;
    padding: 0.5rem;
    transition: 0.2s;

    cursor: pointer;
}

.navlink > a {
    font-weight: 700;
    padding: 0.5rem;
    text-decoration: none;
    color: black;

    cursor: pointer;

    transition: 0.2s;
}

.navlink > a:hover {
    color: rgb(231, 96, 47);
}


@media screen and (max-width: 450px) {
    .navbar {
        width: 100%;
        margin: 0;

    }

    .nav-links {
        border-radius: 0rem;
        border: 0.15rem solid rgb(1, 8, 32);
    }
}

@media screen and (max-height: 700px) {
    .navbar {
        height: 100%
    }
}









.keywords {
    font-weight: 700;
    color: coral;
}



.about-section {
    width: 50%;
}

.about-section > h2 {
    font-size: 4rem;
}


.my-goals, .about-me {
    line-height: 2rem;
    font-size: 1.2rem;
}

.video-container  {
    display: flex;
    flex-direction: column;
}

.video-container > h3 {
    font-size: 2rem;
}

.video-container > iframe {
    width: 100%;
    height: 15rem;
}


@media screen and (max-width: 1000px) {
    .about-section {
        width: 90%;
    }
}




.contacts {
    position: relative;
    bottom: 0%;
    width: 100%;
    height: fit-content;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

    background-color: rgb(1, 8, 32);
    opacity: 0.3;
}

.contacts > * {
    margin: 1rem;
}


.social-link > img {
    width: 3rem;
}