:root {
    --gap-scale-factor: 250;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    margin: 0;
    padding: 75px 0;
    background: linear-gradient(#000000, #8a03f8);
    font-family: "Steph", sans-serif;
}

@font-face {
    font-family: "Steph";
    src: url("assets/fonts/steph-font.ttf");
    font-weight: normal;
}

@font-face {
    font-family: "Steph";
    src: url("assets/fonts/steph-font-bold.ttf");
    font-weight: bold;
}

.container{
    max-width: 100%;
    margin: 20px auto 0 auto;
}

#spider-man-gif {
    width: 500px;
    height: 600px;
    object-fit: cover;
}

h1 {
    color: white;
    font-size: 3rem;
    margin: 50px auto;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 75px;
}

button {
    border-radius: 8px;
    min-width: 100px;
    max-width: 550px;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.1s ease;
  }

button:hover {
    scale: 1.05;
}

#yes-btn {
    transform-origin: center top;
    color: white;
    background-color: #4fff6c;
}


#no-btn {
    color: white;
    background-color: #db4e4e;
}

@media (max-width: 1150px) {
    :root {
        --gap-scale-factor: 200;
    }

    body {
        padding-top: 70px;
    }

    .container {
        max-width: 100%;
        margin: 0;
    }
     
    #spider-man-gif {
        width: 500px;
        height: 600px;
        object-fit: cover;
    }

    h1 {
        font-size: 2rem;
        margin: 50px auto;
    }

    .btn-container {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    button {
        border-radius: 8px;
        min-width: 100px;
        max-width: 400px;
        border: none;
        cursor: pointer;
        padding: 10px 12px;
        white-space: nowrap;
        font-size: 1rem;
        font-weight: 600;
        transition: transform 0.1s ease;
    }
}

@media (max-width: 600px) {
    :root {
        --gap-scale-factor: 50;
    }
    body{
        padding-top: 100px;
    }
    .container{
        max-width: 100%;
        margin: 0;
    }

    #spider-man-gif {
        width: 300px;
        height: 240px;
        object-fit: cover;
    }

    h1 {
        font-size: 1.4rem;
        margin: 32px auto;
    }

    .btn-container {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    button {
        border-radius: 8px;
        min-width: 60px;
        max-width: 175px;
        border: none;
        cursor: pointer;
        padding: 10px 12px;
        white-space: nowrap;
        font-size: 0.8rem;
        font-weight: 600;
        transition: transform 0.1s ease;
    }
}