
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    -ms-overflow-style: none;
    scrollbar-width: none;
    user-select: none;
}

body, html{
    overflow-x: hidden;
}

/* a {
    cursor: none;
} */

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* .circle-mouse {
    position: fixed;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    left: -100px;
    top: 50%;
    mix-blend-mode: difference;
    background-color: white;
    z-index: 10000;
    border: 2px solid white;
    height: 30px;
    width: 30px;
    transition: all 100ms ease-out;
} */

.snap-container {
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: calc(1.5vw + 1.5vh)
}

h2 {
    font-size: calc(1vw + 1vh)
}

.hero {
    background-color: black;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    scroll-snap-align: start;
}

.white-section {
    position: relative;
    background-color: white;
    color: rgb(0, 0, 0);
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    scroll-snap-align: start;
    text-align: justify;
    text-justify: inter-word;
}


.black-section {
    position: relative;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    scroll-snap-align: start;
    text-align: justify;
    text-justify: inter-word;
}


.three-section {
    position: relative;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    height: 100vh;
    display: flex;
    justify-content: left; 
    align-items: center; 
    margin: 0;
    padding: 0;
    scroll-snap-align: start;
    text-align: justify;
    text-justify: inter-word;
    vertical-align: middle;
}

.overlay {
    display: grid;       
    place-items: center; 
    position: absolute;
    width: 35%;
    max-width: 40%;
    padding-left: 5%;
    padding-right: 5%;
  }


.scroll-indicator {
    width: 30px;
    height: 30px;
    display: block;
    border-left: 3px solid gray;
    border-bottom: 3px solid gray;
    transform: rotate(-45deg);
    position: fixed;
    bottom: 2%;
    left: 50%;
    margin-left: -15px;
    z-index: 1000;
    animation: bounce 0.8s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(-45deg);
    }

    40% {
        transform: translateY(-10px) rotate(-45deg);
    }

    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}


.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.terminal-background {
    background-color: black;
    background-image: radial-gradient(rgba(107, 98, 98, 0.75), black 120%);
}

.console .bold {
    font-weight: bold;
    position: relative;
    top: 0px;
}

.webgl{
}

.console {
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 5px #00ff22;
    font: 1rem Ubuntu Mono, Fira Mono, Liberation Mono, monospace;
    white-space: pre-wrap;
}

#cursor {
    color: white;
    display: inline-block;
    width: 3px;
}

#cursor.blink {
    animation: flash 0.5s infinite alternate steps(1, start);
}

@keyframes flash {
    0% {
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.terminal-window {
    width: 100%;
    height: 80%;
    padding-top: 10%;
    padding-bottom: 10%;
}

.console-buttons {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    position: relative;
    top: 6px;
    left: 6px;
    background-color: #8f8f8f;
    border-color: #2c2c2c;
    display: inline-block;
}

.console-menu {
    width: 100%;
    box-sizing: border-box;
    height: 25px;
    background-color: #464646;
    margin: 0 auto;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.console-screen {
    overflow: auto;
    background-color: black;
    background-image: radial-gradient(rgba(107, 98, 98, 0.75), black 120%);
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow-y: auto;
}

.icon-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.fa {
    padding: 3vh;
    font-size: 3vh;
    width: 3vh;
    height: 3vh;
    text-align: center;
    text-decoration: none;
    margin: 2vw;
    border-radius: 50%;
    background: black;
    color: white;
}

.fa:hover {
    opacity: 0.7;
}

.photo {
    width: 75px;
    height: 75px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    /* object-fit: cover; */
}