body {
    background-image: url("https://i.imgur.com/eM0oUkO.jpeg");
    font-family: 'IM Fell DW Pica SC', serif;
    margin: 0;
    padding: 0;
    background-size: cover; 
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

h1 {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    text-align: center;
}

main ul {
    list-style: none;
    padding: 10;
    text-align: left;
    font-size: large;
}

main ul li {
    margin: 20px 0;
}

a{
    color: black;
    text-decoration: none;
    font-style: normal;
    transition: all 0s ease;
}

a:hover{
    text-decoration: underline;
    font-style: italic;
}

footer p {
    padding: 10;
    margin-top: 400px;
}

.overlay {
    background-color: rgb(213, 206, 189);
    width: 80vw;
    max-width: 900px;
    height: 90vh;
    margin: 50px auto;
    padding: 40px;
    box-sizing: border-box;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.alt-footer{
    background-color:rgb(213, 206, 189);
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}


