body{
    background-color: black;
    display: flex;
    flex-direction: column;
    gap: 24px;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

.site-header{
    /*Flexbox*/
    display: flex;
    flex-direction: column;
    align-content: center;
    
    width: 640px;

    margin-left: auto;
    margin-right: auto;

    background-color: black;
    border: 3px groove white;
}

.buttons{
    /*Flexbox*/
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

    background-color: black;
    border: 8px double white;
    color: white;
}

audio{
    margin: auto;
    width: 640px;;
}

.story{
    /*Flexbox*/
    display: flex;
    flex-direction: column;
    width: 628px;

    margin-left: auto;
    margin-right: auto;

    background-color: black;
    border: 3px groove white;
    color: white;
    font-family:'Times New Roman', Times, serif;
    padding-left: 6px;
    padding-right: 6px;
}

button{
    color: white;
    background-color: black;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-family: 'Courier New', Courier, monospace;
}

h1{
    margin-left: auto;
    margin-right: auto;
}