@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@300;400&display=swap');

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=2070&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    margin-bottom: 0.2em;
    color: #f4c542; /* Altın sarısı bir renk */
}

h2 {
    font-size: 2em;
    margin-bottom: 1em;
    font-weight: 300;
}

p {
    font-size: 1.1em;
    max-width: 600px;
    margin-bottom: 2em;
}

.social-media a {
    color: #fff;
    font-size: 1.5em;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #f4c542;
}
