@font-face {
    font-family: "Ugly Dave";
    src: url('/fonts/ugly-dave.woff2') format('woff2');
}

:root {

  --jupiter-terminal-primary: 199, 242, 132;

  --jupiter-terminal-background: 0, 0, 0;

  --jupiter-terminal-primary-text: 232, 249, 255;

  --jupiter-terminal-warning: 251, 191, 36;

  --jupiter-terminal-interactive: 33, 42, 54;

  --jupiter-terminal-module: 16, 23, 31;

}

* {
    
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    
}

body {
    background-color: hsl(0, 0%, 0%);
    font-family: "Lexend Deca", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}



a {
    text-decoration: none;
    color:hsl(0, 100%, 50%)
}


header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    height: 100px;
    gap: 8px;
}


.logo {
    font-family: "Cherry Bomb One", sans-serif;
    font-size: 2.5rem;
    color: #fff;
    padding-bottom: 0.2em;
}

.header-ca {
    color: #fff;
    display: flex;
    gap: 8px;
    background-color: hsl(0, 0%, 11%);
    padding: 15px 20px;
    border-radius: 6px;
    
}


.header-ca .ca-container {
    display: flex;
    padding-top: 3px;
    font-family: "Cherry Bomb One", sans-serif;
}

.header-ca .ca-container .ca {
    width: min(30vw, 440px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
   
}


.mid-ca {
    color: #fff;
    display: flex;
    gap: 8px;
    background-color: hsl(0, 0%, 11%);
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 60px;
    max-width: max-content;
}

.mid-ca .ca-container {
    display: flex;
    padding-top: 3px;
    font-family: "Cherry Bomb One", sans-serif;
    
}

.mid-ca .ca-container .ca {
    width: 25vw;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
   
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    
}

.mid-section .container {
    padding: 0px 60px 60px 60px;
    
}

.copy-button {
    background: hsl(0, 100%, 50%);
    color: #fff;
    display: flex;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 12px;
    gap: 8px;
    align-items: center;
    border: none;
    outline: none;
    cursor: pointer;
}


.copy-button:active {
    background: hsl(357, 98%, 38%);
}

.copy-button:disabled {
    background: hsl(0, 0%, 100%);
    color: #000;
    cursor: not-allowed;
}



.copy-button .copy-icon {
    font-size: 1rem;
}


.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(100vh - 100px);
    text-align: center;
    position: relative;
    padding: 0 30px;
     
}

.top-section .spinning-bob {
    animation: spin 15s linear infinite;
    transform-origin: center;
}

.spinning-bob img {
    width: clamp(100px, 100%, 300px);
}

h1 {
    font-family: "Cherry Bomb One", sans-serif;
    font-size: 6rem;
    position: relative;
    margin-bottom: 30px;
}


.top-section p {
    font-size: 2.89rem;

}

.top-section video {
    width: 100%;
    height: calc(100vh - 100px);
    position: absolute;
    object-fit: cover;
    left: 0;
    box-sizing: border-box;
    z-index: -1;
}

.top-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg,rgb(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 150%);
    z-index: -1;
}

.top-section .top-section-arrow {
    margin-top: 60px;
    font-size: 3rem;
    display: inline-block;
    animation: arrow 1.5s ease-in-out infinite;
}




.mid-img-container {
    margin-top: -250px;
    text-align: end;
    position: relative;
    z-index: -1;
    overflow-x: clip;

}

.mid-img-container img {
    max-width: 400px;
    
}



.mid-section .social-links {
    display: flex;
    gap: 16px;
    margin-top: 60px;

}

.mid-section .social-links img {
    width: 60px;
}


h2 {
    font-family: "Cherry Bomb One", sans-serif;
    font-size: 4.1rem;
    line-height: 1;
    margin-bottom: 60px;
    position: relative;
    margin-top: 60px;

}

p {
    font-family: "Ugly Dave";
    font-size: 1.5rem
}

.bot-section {
    text-align: center;
    background-color:hsl(0, 0%, 0%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow-x: clip;
}

.bot-section p {
    margin-bottom: 30px;
}

.bot-section-buttons {
    margin-top: 60px;
    margin-bottom: 120px;
}

footer {
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 8%);
    color: #000;
    padding: 60px 30px;
    gap: 30px;
}

footer p:last-child {
    font-family: "Ugly Dave";
    font-size: 1rem;
    color:hsl(0, 0%, 100%);
}

footer p {
    font-family: "Lexend Deca";
    font-weight: 300;
    font-size: 0.9rem;
    text-align: center;
    color: hsla(0, 0%, 100%, 0.503)
}

.bob-1 {
    position: absolute;
    top: 0;
    left: 0px;
    transform-origin: top center;
    animation: swing 3s ease-in-out infinite;
}

.bob-1 img{
    width: 400px;

}

.bob-2 {
    position: absolute;
    bottom: 0;
    right: 0px;
    transform: translateX(50px);
    z-index: 0;
}

.bob-2 img{
    width: 400px;

}

#container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
  }

.bouncer {
    position: absolute;
    object-fit: contain;
  }

.bob-newspaper {
    width: 200px;
    height: 200px;
}

.bob-spinning {
    width: 150px;
    height: 150px;
}

.bob-sleeping {
    width: 200px;
    height: 200px;
}

.bob-candle {
    width: 250px;
    height: 250px;
}


.social-links a {
    transition: 200ms ease-in-out;
}

.social-links a:hover {
    transform: scale(1.15);
}

.bot-section-buttons a img{
    transition: 200ms ease-in-out;
}

.bot-section-buttons a:hover img{
    transform: scale(1.1);
}


.candle-divider {
    position: relative;
    height: 20px;
    width: min(66.6vw, 800px);
    background-color: hsl(112, 99%, 35%);
    border: 4px solid white;
    margin-bottom: 30px;
    transform: translateY(-10px);
}

.candle-divider::after{
    content: "";
    position: absolute;
    background-color: #fff;
    height: 4px;
    width: 10px;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.candle-divider::before{
    content: "";
    position: absolute;
    background-color: #fff;
    height: 4px;
    width: 50vw;
    left: -50vw;
    top: 50%;
    transform: translateY(-50%);
}

.candle-divider-2 {
    position: relative;
    height: 20px;
    width: min(66.66vw, 800px);
    background-color: hsl(112, 99%, 35%);
    border: 4px solid white;
    margin-bottom: 30px;
    transform: translate(4px, -10px);
    margin-left: auto; 
    margin-right: 0;
    
}


.candle-divider-2::before{
    content: "";
    position: absolute;
    background-color: #fff;
    height: 4px;
    width: 120px;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
}

.links-wrapper {
    background: linear-gradient(rgb(0, 0, 0) 0%, hsl(0, 0%, 10%) 100%);
    padding: 60px;
    border-radius: 12px;
    width: max-content;
}

.bot-section .container {
        padding-left: 0px;
        padding-right: 0px;
    }

.bot-section :not(:last-child) {
        padding-left: 10px;
        padding-right: 10px;
}

.links-wrapper ul {
    font-family: "Cherry Bomb One", sans-serif;
    list-style-type: disc;
    list-style-position: inside;
    font-size: 1.7rem;
}
.links-wrapper ul li {
    font-family: "Cherry Bomb One", sans-serif;
}

.links-wrapper ul li::marker {
    color: hsl(0, 100%, 50%);
}

.links-wrapper ul li + li {
  margin-top: 30px;
}


@keyframes swing {
  0%   { transform: rotate(35deg); }
  50%  { transform: rotate(25deg); }
  100% { transform: rotate(35deg); }
}


@keyframes arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media only screen and (max-width: 640px) {

    .header-ca .ca-container .ca {
        max-width: 40px;
    }
    .mid-img-container img {
        width: 300px;
        
    }

    .links-wrapper {
        width: 100%;
        justify-items: center;
    }

    h1 {
        font-size: 4.1rem;
    }

    .mid-img-container {
        margin-top: -150px;

    }

    .mid-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .mid-section .container p, .mid-section .container h2 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 320px) {
    
    .logo {
        font-size: 2rem;
    }

    .header-ca .ca-container .ca {
        max-width: 20px;
    }
    
    .links-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .links-wrapper ul{
        padding-left: 30px;
        padding-right: 30px;
    }
    

}