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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --dk-blue: #1d3557;
    --white: #f1faee;
    --red: #9e2a2b;
    --sky-blue: #a8dadc;
    --green: #1b4332;
    --orange: #e09f3e;
}
body {
    background-color: var(--sky-blue);
    color: var(--dk-blue);
    font-family: "Montserrat", sans-serif;
}
.game-container {
    text-align: center;
    margin-top: 50px;
    padding: 10px;
    width: 70vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        17deg,
        rgba(0, 122, 223, 1) 0%,
        rgba(0, 236, 188, 1) 100%
    );
    border-radius: 10px;
    height: auto;
    box-shadow: -10px 20px 29px -4px rgba(4, 108, 192, 0.67);
}
h2 {
    margin-top: 1rem;
}
button {
    font-size: 15px;
    margin: 1rem 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    color: var(--white);
    background-color: var(--dk-blue);
    border: none;
    transition: all 0.7s ease;
}

button:hover {
    color: var(--dk-blue);
    background-color: var(--white);
}

.gif {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}
.gif img {
    height: 100%;
    width: 20vw;
    user-select: none;
}

@media screen and (max-width: 480px) {
    .game-container {
        width: 80vw;
    }
    .gif img {
        width: 50vw;
    }
}
