* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4bb85;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

.content {
    margin-bottom: 2rem;
}

h1 {
    color: #f4bb85;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.construction-message {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.patience-message {
    color: #f4bb85;
    font-style: italic;
    font-size: 1.1rem;
}

.social-link {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.social-link a {
    color: #f4bb85;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-link a:hover {
    color: #e5a76f;
    transform: scale(1.1);
}

footer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

footer a {
    color: skyblue;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
} 