body {
    background: linear-gradient(#1c2128, black, #1c2128);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    padding: 0 2rem;
    margin-top: 0;
}

h1 {
    color: #EAEFEF;
    font-size: 3em;
    font-family: "Slackey", sans-serif;
    font-weight: 100;
    margin-top: 20px;
    margin-bottom: 0;
}

h2 {
    color: #909194;
    margin: 10px;
}

h2,
#askQ,
#askBtn {
    font-family: "Comfortaa", sans-serif;
}

#askQ {
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    width: 80%;
    max-width: 400px;
    border: none;
    margin: 1rem 0;
    border-radius: 10px;
}

#askBtn {
    background-color: #2c313a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

#askBtn:hover {
    background-color: #444b56;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

footer {
    margin-top: 5rem;
    font-size: 0.9rem;
    color: grey;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#circle {
    background: radial-gradient(circle at center, #111 70%, #000);
    border-radius: 50%;
    width: 450px;
    height: 450px;
    margin: 3em auto;
    position: relative;
    box-shadow: 0 0 300px #7a7a7a;
}

#gap {
    width: 150px;
    height: 150px;
    background-color: #2f2f2f;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: monospace;
    font-size: 1rem;
    text-align: center;
    padding: 10px;
    box-shadow: inset 0 0 10px #000;
}

#answer {
    font-size: 1.5rem;
    font-family: "Inconsolata", monospace;
    margin-top: 1.5rem;
    animation: fadeIn 1s ease-in-out;
    transform: rotate(-45deg)
}

@keyframes shake {
    0% {
        transform: rotate(0);
    }

    20% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    60% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(0);
    }
}

.shake {
    animation: shake 0.6s;
}