:root {
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Open Sans';
    background-color: black;

}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

button {
    display: flex;
    width: 10em;
    border: 1px solid black;
    background-color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    align-content: center;
    justify-content: center;
    margin: 0.25em;
}

button:hover {
    border: 1px solid #be9b4e;
    color: #ffffff;
    background-color: black;
}

h1 {
    font-family: 'Orbitron';
    color: goldenrod;
    text-align: center;
    margin-top: 6rem;
}

a {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color:  #be9b4e;
}


footer {
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    margin-top: 300px;
    
}