:root {
    --primary-color: #e4a39d;
    --secondary-color: #3b5d5f;

    font-size: 22px;
}

body {
    background-color: #fff;
    background-image: url(./bg.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 250px;
    color: var(--secondary-color);
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    gap: 24px;
    text-align: center;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    body {
        background-size: 450px;
    }
}

.logo {
    width: 280px;
}

.page-wrapper {
    max-width: 85%;
}

@media (min-width: 1024px) {
    .page-wrapper {
        max-width: 60vw;
    }
}

h2 {
    font-size: 1rem;
}

p {
    color: var(--primary-color);
    font-size: 0.8rem;
}

h2, p {
    font-style: italic;
}

.btn {
    background-color: var(--primary-color);
    padding: 8px 12px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    transition: 700ms all;
    margin-top: 20px;
}

.btn:hover {
    background-color: var(--secondary-color);
    transition: 700ms all;
}

strong {
    font-weight: bold;
    color: var(--secondary-color)
}