@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@100;200;300;400;500;600;700;800;900&display=swap');

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(250, 250, 250);
    padding: 0;
    box-sizing: border-box;
    font-family: Manrope, sans-serif;
}

img {
    width: 38%;
    margin-top: 10px;
}

h1 {
    font-size: 1.82em;
    margin-top: -32px;
    color: rgb(42, 42, 44);
}

p {
    font-size: 1.05em;
    margin: -16px 0 -8px;
    color: rgb(85, 85, 85);
}

.button {
    background-color: rgb(253, 135, 98);
    font-size: 1em;
    font-weight: 500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    margin: 16px 0;
    text-decoration: none;
    transition: opacity 0.3s;
    letter-spacing: 0.05em;
}

.button:hover {
    background-color: rgb(248, 121, 91);
}

@media (orientation: portrait) {
    img {
        margin-top: -10px;
        width: 86%;
    }
    h1 {
        font-size: 2.3em;
    }
    p {
        font-size: 1.1em;
        margin: -16px 0 -2px;
        padding: 0 10px;
    }
}

@media (min-width: 1200px) {
    img {
        margin-top: 1px;
        width: 50%;
    }
    h1 {
        font-size: 3.9em;
        margin-top: -40px;
    }
    p {
        font-size: 1.8em;
        margin: -36px 0 6px;
        padding: 0 10px;
    }
    .button {
        font-size: 1.5em;
    }
}