/* Alap stílusok */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
}

/* Ünnepi oldal háttér és stílus */
body.thank-you {
    background: linear-gradient(to bottom right, #fbe9e7, #ffd180); /* Meleg, ünnepi árnyalatok */
    color: #4e342e; /* Sötétbarna szöveg szín */
    text-align: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(255, 255, 255, 0.9); /* Áttetsző fehér doboz */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 90%;
}

/* Cím: Ünnepi kalligrafikus betűtípus */
.title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8em;
    color: #bf360c; /* Mély ünnepi vörös */
    margin-bottom: 20px;
}

/* Üzenet stílusok */
.message {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5em;
    color: #6d4c41; /* Meleg barna */
    margin-bottom: 30px;
}

.image {
    width: 90%; /* Automatikusan a képernyő méretéhez igazodik */
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Gomb */
.btn {
    display: inline-block;
    background-color: #ff7043; /* Ünnepi narancsvörös */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'Raleway', sans-serif;
}

.btn:hover {
    background-color: #e64a19; /* Sötétebb árnyalat hover-re */
}
