html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Alap háttér */
body {
    background: url('bg.jpg') no-repeat center center;
    background-size: cover;
    background-color: #D0B595; /* világos bézs tartalék háttérszín */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ha nagy a képernyő (szélesebb, mint 1000px vagy magasabb, mint 750px):
   a kép teljesen kitölti a teret (nem lesz levágva) */
@media (min-width: 1000px), (min-height: 750px) {
    body {
        background-size: 100% 100%;
        background-position: center center;
    }
}

/* Finom overlay */
.overlay {
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10vh;
    box-sizing: border-box;
}

/* Szöveg */
.content {
    text-align: center;
}
/* Logó */
.logo {
    width: 220px;
    max-width: 90%;
    height: auto;
    margin-bottom: 40px;
}

/* Szövegek */
h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    color: #1F4255;
}


.email {
    margin-top: 15px;
    font-size: 1.2rem;
}

.email a {
    color: #B48A57;
    text-decoration: none;
}

.email a:hover {
    text-decoration: underline;
}
