* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        font-family: "MedievalSharp", serif;      
}
#generate-button{
    background-color: #6D2932;
    color: #E8D8C4;
    padding: 10px 20px;
    font-size: 4em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
}
#random-station {
    position: absolute;
    color: #E8D8C4;
    font-size: 5vw;
    cursor: pointer;
}
#restart-button{
    background-color: #6D2932;
    color: #E8D8C4;
    padding: 10px 20px;
    font-size: 4vw;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 200px;
}
header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #6D2932;;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
}
h1
{

    color: #E8D8C4;
    font-size: 4vw;
    font-weight: 600;
}
body
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background: #561C24;
}
.container
{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer
{
    position: absolute;
    bottom: 0;
    background: #6D2932;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}
p
{
    color: #E8D8C4;
    font-size: 2vw;
}