* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
h1 {
    flex-shrink: 0;  /* Stays fixed size at top [web:76] */
    text-align: center;
    padding: 12px;   /* Add space as needed [web:76] */
    background: rgba(255,255,255,0.5);  /* Optional overlay for readability */
    color: #8BB2FC;
}
h2 {
      flex-shrink: 0;  /* Stays fixed size at top [web:76] */
    text-align: center;
    padding: 8px;   /* Add space as needed [web:76] */
    background: rgba(255,255,255,0.1);  /* Optional overlay for readability */
    color: #F0EBEB;
}
p {
    flex: 0.1;         /* Grows to fill space below header [web:80] */
    display: flex;
    flex-direction: column;
    justify-content: center;  /* Centers text vertically in remaining area [web:76] */
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #F0EBEB;
}