body {
    background: black;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Baskervville", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    text-align: center;

}

h1 {
    font-family: "Baskervville SC", serif;
    color: red;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: auto;
    flex: 0 0 50px;
    color: white;
    text-align: center;
}
#links {
    display: flex;
    flex-wrap: nowrap;

    align-items: center;
    justify-content: space-around;
}
a:link {
    color: red;
}
a:visited {
    color : darkred;
}

