body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(to bottom, 
        rgba(235, 71, 42, 0.9), 
        rgb(235, 71, 42)
    );
}

header {
    width: 100%;
    height: 50vh;
    background: url("https://pizzahut.com.br/assets/images/home/background-header.png") no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 400px;
    padding: 40px 20px;
    border-radius: 25px;
    background-color: blanchedalmond;
    font-size: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

button {
    background-color: blanchedalmond;
    font-size: 22px;
    border-radius: 25px;
    margin-top: 15px;
    padding: 10px 20px;
    cursor: pointer;
    border: 2px solid black;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: rgb(235, 71, 42);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .container {
        font-size: 28px;
        padding: 30px 15px;
    }

    button {
        font-size: 18px;
        padding: 8px 16px;
    }
}