html, body {
    margin: 0;
    padding: 0;
    max-width: 100vw;
    max-height: 100vh;  
    background-color: #ffebeb;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;
}

h1 {
    color: #b42525;
    text-align: center;
    font-size: clamp(1.5em, 5vw, 3em);
}

p {
    text-align: center;
}