/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    background: linear-gradient(to bottom, #1e1e1e, #121212);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-color: #1e1e1e;
}

.title {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #cccccc;
}

.buttons {
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 1em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.discord {
    background: #7289da;
    color: white;
}

.btn.discord:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn.facebook {
    background: #3b5998;
    color: white;
}

.btn.facebook:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.email {
    font-size: 1em;
    color: #bbbbbb;
}

.email a {
    color: #7289da;
    text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
