body {
    font-family: 'Sulphur Point', sans-serif;
    background-color: #fff7df;
    user-select: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0 auto;
    max-width: 500px;
}

h1 {
    font-family: 'Sulphur Point', sans-serif;
    margin: 5px;
    font-size: 45px;
}

h3 {
    font-family: 'Sulphur Point', sans-serif;
    font-size: 30px;
    margin: 0;
}

h5 {
    font-family: 'Sulphur Point', sans-serif;
    font-size: 15px;
    margin-top: 5px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-style: italic;
}

button {
    color: black;
    font-family: 'Sulphur Point', sans-serif;
    border: 0px;
    background-color: #F3E2A9;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #f7d57a;
    cursor: pointer;
}

img {
    display: block;
    margin: 0 auto;
    border-radius: 25px;
    width: calc(100vw - 20px);
    max-width: 480px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    /*box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);*/
}

@media (max-width: 500px) {
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
        overflow: hidden;
    }
}

#poem p {
    margin: 0;
    line-height: 1.4;
}

#poem br {
    margin-bottom: 0.375em;
}

header, footer {
    margin: 15px;
}

main {
    flex: 1;
}

footer p{
    margin: 0px;
    line-height: 1.2;
}

footer {
    background-color: #e6dcb2;
    margin-top: 30px;
    margin-bottom: 15px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 15px;
    border-radius: 8px;
    /*box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);*/
}

#credits-poem {
    margin-top: -10px;
}

#admin-link {
    color: black;
    text-decoration: none;
}