:root {

    --white: #fefefe;
    --black: #000000;
    --green: #339966;

}

body {

    background: var(--black);
    color: var(--white);
    font-family: monospace;
    
}

#main {
    
    max-width: 100%;
    justify-content: center;
    text-align: center;
    padding-top: 25px;
    
}

#main p {

    font-size: 16px;
    color: var(--white);
    padding-top: 10px;

}

#question {

    color: var(--green);
    font-size: 32px;
    text-decoration: underline;

}

#title img {

    width: 100px;
    line-height: 0px;
    border-radius: 25px;

}

#title h1 {

    color: var(--green);
    font-size: 64px;
    font-weight: normal;
    margin: auto;
    padding: 0px 0px 10px 0px;
    text-transform: lowercase;

}

#link-btns {

    display: grid;
    place-items: center;
    font-size: 32px;
    
}

#link-btns a {
    
    color: var(--green);
    text-decoration: none;
    
    
}

#link-btn {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    height: 50px;
    width: 350px;
    border: 2px solid;
    border-radius: 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 4px;

}

#link-btn:hover {

    transition: 0.2s;
    border-color: var(--green);
    background: var(--green);
    color: var(--black);

}

/* #footer {

    background: var(--black);
    padding-bottom: 25px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;

} */

#btns {
    
    padding-top: 10px;
    text-align: center;

}

#btns a {

    text-decoration: none;

}

footer {

    padding-top: 10px;
    color: var(--green);

}

footer a {

    color: var(--green);
    text-decoration: none;

}

footer a:hover {

    text-decoration: underline;

}