* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page-content {
    max-width: 800px;
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: auto;
}

.wedding-hero {
    width: 100%;
}

.wedding-title {
    font-size: 3em;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 20px;
}

.wedding-names {
    font-size: 1.2em;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 0;
}

.divider {
    width: 100px;
    height: 2px;
    background: #e74c3c;
    margin: 30px auto;
}

.wedding-content {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
}

.heart {
    font-size: 2em;
    color: #e74c3c;
    animation: pulse 2s infinite;
    margin-bottom: 20px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.message {
    margin-top: 30px;
    margin-bottom: 20px;
}

.details {
    margin-top: 20px;
}

.site-footer {
    margin-top: 30px;
    padding-top: 30px;
    color: #95a5a6;
    font-size: 0.9em;
    text-align: center;
}

@media (max-width: 600px) {
    .wedding-title {
        font-size: 2em;
    }
    
    .page-content {
        padding: 40px 20px;
    }
}
