* {
    box-sizing: border-box;
}

html {
    background-image: url(fondo.jpeg);
    background-position: top;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 14pt;
}

body {
    display: flex;
    justify-content: center;
    margin: 0;
}

#wrap {
    width: 900px;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 100%;
}

#wrap img.title {
    width: 300px;
    margin: 60px 0 0;
    flex-shrink: 0;
    max-width: 100%;
}

#wrap img.breakfast {
    width: 600px;
    margin: 0 0 60px 0;
    max-width: 100%;
    z-index: 1;
}

#wrap .text {
    width: 900px;
    max-width: 100%;
    background-color: #fffbe6;
    padding: 80px 100px;
    transform: translateY(-140px);
    border-radius: 16px;

    line-height: 24px;

    display: flex;
    align-items: center;
    flex-direction: column;
}

#wrap .text>div {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#wrap .text p {
    margin-top: 0;
}

#wrap .text .button {
    background-color: #ee9700;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 9999px;
    padding: 8px 16px;
    text-align: center;
}

#wrap .text form {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 24px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 400px;
}

#wrap .text form label {
    font-size: 12pt;
    color: #777;
}

#wrap .text form input:not([type="checkbox"]) {
    margin-bottom: 16px;
    font-size: 13pt;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 999px;
    width: 100%;
}

#wrap .text form input[type="submit"] {
    background-color: #c38e2e;
    border: 0 none;
    color: white;
    width: unset;
    padding: 8px 32px;
    cursor: pointer;
}

#wrap .text form input[type="checkbox"] {
    margin-bottom: 20px;
    margin-left: 14px;
}

#wrap .text form dl {
    margin: 0;
    margin-bottom: 14px;
}

#wrap .text form dd {
    margin-top: -38px;
}

@media (max-width: 900px) {
    html {
        background-size: 200%;
    }

    #wrap .text {
        padding: 100px 40px;
        border-radius: 16px 16px 0 0;
        margin-bottom: -140px;
    }
}

@media (max-width: 500px) {
    html {
        background-size: 400%;
    }
}