body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.card {
    background-color: #ffffff;
    border-radius: 10px; /* Kumerad nurgad */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden; /* Tagab, et kõik sisu jääb kumerate nurkade sisse */
}

h1 {
    font-size: 2.5em; /* Pealkirja suurus */
    text-align: center; /* Keskendab teksti */
    margin-top: 80px; /* Rohkem ruumi pealkirja kohale */
    margin-bottom: 20px; /* Alumine marginaal */
    color: #333; /* Teksti värv */
    line-height: 1.2; /* Rea kõrgus */
}

/* Tahvelarvutite ja väiksemate seadmete jaoks */
@media (max-width: 768px) {
    h1 {
        font-size: 2em; /* Vähendatud tekstisuurus */
        margin-top: 200px; /* Kohandatud ülemine marginaal tahvelarvutitele */
    }
}

/* Mobiiliseadmete jaoks */
@media (max-width: 480px) {
    h1 {
        font-size: 2em; /* Väiksem tekst mobiiliekraanidel */
        margin-top: 200px; /* Veelgi suurem ülemine marginaal mobiilidel */
    }
}

p {
    color: #777777;
    margin: 5px 0;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #eeeeee;
}