@import url('https://fonts.cdnfonts.com/css/acapulco');
@import url('https://fonts.cdnfonts.com/css/lovely-jeanne-script');



body,
html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 20px;
    scroll-behavior: smooth;

}

:root {
    --text-primary: #e8e117;
    --text-secondary: #8A5E7C;
}

a {
    color: inherit;
    text-decoration: none;
}

.home-logo {
    height: 25px;
    z-index: 99;
    position: fixed;
    top: 30px;
    left: 30px;

}

.projects {
    z-index: 99;
    position: fixed;
    right: 30px;
    top: 30px
}

.about {
    z-index: 99;
    position: fixed;
    right: 30px;
    bottom: 30px
}

.email {
    z-index: 99;
    position: fixed;
    left: 30px;
    bottom: 30px
}

.hero-title {
    font-family: 'ACAPULCO', sans-serif;
    margin-top: -10vh;
    padding-bottom: 1em;
    font-size: 2em;
    color: var(--text-primary);

}

.hero-copy,
.projects,
.about,
.email,
.secondary-text {
    color: var(--text-primary);
    font-size: 14px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f8f239;
    transform: translateY(-2px);
}

.text-overlay {
    width: 100%;
    height: 80vh;
}

.page {
    width: 100%;
    min-height: 1500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}


.scroll-msg {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-msg {
    margin-top: 2em;
    pointer-events: none;
}

.text-overlay {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
}

canvas#gooey-overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    pointer-events: none;
}

.arrow-animated {
    font-size: 1em;
    animation: arrow-float 1s infinite;
    color: var(--text-primary);
}

@keyframes arrow-float {
    0% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }

    60% {
        transform: translateY(50%);
        animation-timing-function: ease-in-out;
    }

    100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
}

.lil-gui {
    --width: 350px;
    max-width: 90%;
    --widget-height: 20px;
    font-size: 15px;
    --input-font-size: 15px;
    --padding: 10px;
    --spacing: 10px;
    --slider-knob-width: 5px;
    --background-color: rgba(5, 0, 15, .8);
    --widget-color: rgba(255, 255, 255, .3);
    --focus-color: rgba(255, 255, 255, .4);
    --hover-color: rgba(255, 255, 255, .5);

    --font-family: monospace;
}

.lil-gui.autoPlace {
    z-index: 1;
}
.hover-link {
    margin: 1rem;
  }
  
  #image-preview {
    position: fixed;
    display: none;
    width: 150px;
    height: 100px;
    background-size: cover;
    background-position: center;
    pointer-events: none;
  }
  
  /* SPLIDE */
.my-slider-progress {
    background: #ccc;
  }
  
  .my-slider-progress-bar {
    background: greenyellow;
    height: 2px;
    transition: width 400ms ease;
    width: 0;
  }
  
  .proj{
    padding-top: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
  }
  .proj img{
    height: 50vh;
  }

  .proj-link{
    padding-top: 1rem;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: underline;
  }
@media (min-width: 768px) {

    .hero-title {
        font-family: 'ACAPULCO', sans-serif;
        text-transform: uppercase;
        font-size: 9rem;
        color: var(--text-primary);
        padding-bottom: 0;

    }

    .proj img{
        height: 70vh;
      }

}

 
/* ABOUT.HTML ---------------------------------------- */
.about-body {
    background-color: #000000;
    height: 100vh;
}

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


.about-stack {
    font-family: 'ACAPULCO', sans-serif;
    display: flex;
    margin-top: 10rem;
    text-align: center;
}

.about-text {
    font-size: 5rem;
    position: relative;
    color: var(--text-secondary);

}

.me-text {
    color: var(--text-primary);
    font-family: 'Lovely Jeanne Script', sans-serif;
    text-transform: lowercase;
    font-size: 2rem;

}

.about-copy{
    color: var(--text-primary);
    width: 40%;

}

  
