body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(to right, yellow, rgb(2, 255, 2));
    display: flex;
    justify-content: center; /* vodorovné centrování */
    align-items: center;     /* svislé centrování */
    position: relative;      /* pro absolutní pozicování nadpisu */
}

/* Nadpis nahoře */
h1 {
    margin-top: 1cm;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 72px;
    margin: 0;
}

/* Box uprostřed */
.box {
    
    margin: 10px;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}