h1 {
    text-align: center;
}

p {
    text-align: center;
}

body {
    font-family: Verdana;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
}

/* BACK TO HOME */

.back-to-home {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d4a569;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.2s ease-out;
}

.back-to-home span {
    color: #ffffff;
    font-size: 2rem;
}

.back-to-home:hover {
    transition: cubic-bezier(.07, 1.51, .82, 1.51) 0.2s;
    transform: scale(1.1);
}