:root {
    --Light-Cyan: hsl(193, 38%, 86%);
    --Neon-Green: hsl(150, 100%, 66%);
    --Grayish-Blue: hsl(217, 19%, 38%);
    --Dark-Grayish-Blue: hsl(217, 19%, 24%);
    --Dark-Blue: hsl(218, 23%, 16%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Dark-Blue);
    width: 100%;
    height: calc(100vh - 16px);
}

@media (max-width: 768px) {
    .container {
        padding: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
}

.content {
    position: relative;
    padding: 50px;
    width: 550px;
    background-color: var(--Dark-Grayish-Blue);
    border-radius: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .content {
        width: 100%;
        padding: 20px;
    }
}

.id {
    color: var(--Neon-Green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

q {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 32px;
    font-weight: 800;
    color: var(--Light-Cyan);
}

@media (max-width: 768px) {
    q {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .divider {
        margin-bottom: 40px;
    }
}

.mob-div {
    display: none;
    margin-bottom: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .mob-div {
        display: block;
    }

    .divider {
        display: none;
    }
}

button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--Neon-Green);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translatex(-50%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

button:hover {
    box-shadow: 0px 0px 20px 5px var(--Neon-Green);
}

.attribution {
    color: var(--Light-Cyan);
    font-size: 11px;
    text-align: center;
    background-color: var(--Dark-Blue);
    height: 16px;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}