/* style.css */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background: radial-gradient(circle, #F4FBFE 0%, #C7EFF9 60%);
    text-align: center;
}

.pub {
    position: absolute;
    top: 5px;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}


.discord {
    font-size: 14px;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    max-width: 300px;
    text-align: center;
    border: 1px solid #5865F2; /* Discord bleu */
    border-radius: 5px;
    padding: 10px;
}
@media (min-width: 768px) {
    .discord {
        position: absolute;
        left: 20px;
        bottom: 20px;
        margin-top: 0;
    }
}

.discord-link {
    text-decoration: none;
    color: #5865F2; /* Discord bleu */
    font-weight: bold;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.discord-icon {
    max-width: 100px;
}
