body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('background.jpg');

    background-position: 50% 50%; /* Mantém o plano de fundo centralizado */
    overflow: hidden;
    transition: background-position 0.2s ease; /* Adicione uma transição suave */
}

.content {
    text-align: center;
    z-index: 1;
    color: #fff;
    margin-bottom: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icons-container {
    display: flex;
    justify-content: center; /* Centraliza os ícones horizontalmente */
    margin-bottom: 20px; /* Adicione margem para separar os ícones do texto */
}

.discord-icon {
    position: relative;
    background-color: rgba(255, 255, 255, 0.382);
    padding: 15px;
    border-radius: 20px;
    margin: 0 10px; /* Adicione margem entre os ícones */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column; /* Altera a direção do flex para coluna */
    align-items: center; /* Centraliza o conteúdo horizontalmente */
}

.tooltip {
    color:azure
}

.discord-icon:hover .tooltip {
    display: block; /* Exibe a tooltip ao passar o mouse sobre o ícone */
}
img {
    width: 40px; /* Tamanho fixo para todos os ícones */
    height: 40px; /* Tamanho fixo para todos os ícones */

}

h1, p {
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.server-description {
    text-align: center;
    margin: 20px 0;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

/* Remova o estilo do footer se não for necessário */
footer {
    display: none;
}

.custom-notification {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff; /* Cor de fundo da notificação */
    color: rgb(4, 4, 4);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 200px; /* Largura da notificação */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Sombra para efeito de elevação */
}

.custom-notification a {
    color: rgb(6, 6, 6);
    text-decoration: underline;
    margin-left: 10px;
}

.custom-notification .close-button {
    cursor: pointer;
}
