body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #d2b48c; /* Darker parchment color */
    background-image: url('https://www.transparenttextures.com/patterns/old-wall.png'); /* Optional: Add a texture */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-size: cover;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #b8860b; /* Old gold border */
    color: #006400; /* Dark green text */
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.social-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.social-link {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    color: #006400; /* Dark green link color */
}

.social-link i {
    margin-right: 8px;
    font-size: 1.5em;
}

.social-link:hover {
    color: #b8860b; /* Old gold hover color */
}
