body {
    background-image: url(images/grainbw.png);
    color: #000000;
    min-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    background-size: cover;
}

body.hovered {
    background-image: url(images/grain.jpg);
    transition: 0.5s;
}

h1 {
    font-family: 'Rochester Twee', Arial;
    font-size: 55px;
    text-align: center;
}

p {
    font-family: 'TT Norms Pro', Arial;
    font-size: 19px;
    text-align: center;
    margin: 20px;
}

section {
    display: block;
    justify-content: center;
    margin: auto;
    max-width: 500px;
    padding: 30px;
    
}

button {
    width: 200px;
    height: 80px;
    border-width: 3px;
    border-color: #000000;
    border-style: solid;
    background: transparent;
    font-family: TT Norms Pro;
    font-size: 19px;
    font-weight: 500;
    margin-top: 20px;
}

button:hover {
    border-color: #ffffff;
    color: #ffffff;
    transition: 0.5s;
}

.button {
    margin: 0 auto;
    display: block;
}

.footer {
    display: block;
    justify-content: center;
    margin: auto;
    margin-top: ;
}

.author {
    font-size: 14px;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('TTNormsPro-Regular.woff2') format('woff2'),
        url('TTNormsPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rochester Twee';
    src: url('RochesterTwee.woff2') format('woff2'),
        url('RochesterTwee.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


