body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #808080; /* Középszürke háttér */
    color: white; /* Fehér szöveg kontraszt */ 
    padding: 20px;
}

h1 {
    font-size: 56px;
    color: #8b0000; /* Bordó szín */
}

.highlight {
    font-size: 64px;
    font-weight: bold;
    color: #b22222; /* Sötétebb bordó */
}

/* Gomb stílusa */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #808080; /* Szürke gomb */
    color: white;
    text-decoration: none;
    font-size: 20px;
    border-radius: 12px; /* Lekerekített gomb */
    margin: 30px 0;
    transition: background-color 0.3s ease-in-out;
}

.button:hover {
    background-color: #8b0000; /* Bordó kurzorra */
}

/* Szöveg szekció */
.content {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Lábléc */
footer {
    margin-top: 40px;
}
