html, body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    font-family: 'Nunito Sans', sans-serif;
}

div {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    width: 850px;
}

img.logo {
    box-sizing: border-box;
    height: 152px;
    padding: 32px;
    width: 300px;
}

h1 {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 24px;
    font-size: 32px;
    font-weight: 700;
    line-height: 100%;
}

p {
    font-size: 16px;
    font-weight: 500;
    line-height: 147%;
    text-align: center;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px 0;
    height: 120px;
    width: 100%;
    flex-wrap: wrap;
}

.buttons a {
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    color: #050303;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    font-weight: 600;
    height: 116px;
    padding: 32px 24px;
    position: relative;
    text-decoration: none;
    width: 190px;
}

.buttons a:hover,
.buttons a:focus {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
    transform: scale(104%);
    transition: all 0.25s ease-in-out;
}

.buttons a img {
    position: absolute;
    top: 40px;
    right: 24px;
    z-index: -1;
}

footer {
    border-top: 1px solid #777777;
    padding-bottom: 40px;
    padding-top: 40px;
    text-align: center;
    width: 100%;
}

footer,
footer a {
    color: #777777;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .content, footer {
        transform: scale(0.75);
        width: 100%;
    }
}