/* --- Alapbeállítások és Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #2c3e50, #4ca1af); /* Modern, sötétkékből türkizbe átmenet */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* --- Tartalom konténer --- */
.container {
    max-width: 700px;
    animation: fadeIn 1.5s ease-in-out;
}

.icon {
    font-size: 4rem; /* Ikon mérete */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- Kapcsolat gomb --- */
.contact-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50; /* A háttér sötét színe */
    padding: 12px 25px;
    border-radius: 50px; /* Lekerekített gomb */
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05); /* Kiemelés egérráhúzáskor */
    background-color: #f0f0f0;
}

/* --- Animáció --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Reszponzivitás (mobil nézet) --- */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .icon {
        font-size: 3rem;
    }
}