body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #7d87bc;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}
.image-wrapper {
    width: 80vw;
    height: 80vw;
    max-width: 2000px;
    max-height: 2000px;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #6a77b9;
    color: #050505;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
footer a {
    color: #050505;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
