* {
    box-sizing: border-box;
}

body {
    background-color: black;
    color: #eee;
    font-family: monospace;
    font-size: 16px;
}

main {
    background: url('/images/background.jpg');
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: bottom;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section {
    background-color: rgba(0,0,0,0.8);
    padding: 40px;
    width: 80%;
    max-width: 450px;
}

.logo {
    width: 80%;
    height: auto;
    margin: 0 10%;
}

button {
    width: 48%;
    background-color: yellow;
    height: 30px;
    float: left
}

button:first-of-type {
    margin-right: 2%;
}

button:last-of-type {
    margin-left: 2%;
}

button:hover {
    background-color: white;
}
