* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Russo One', sans-serif;
    background-color: #2f3136; /* Темный фон, как в Discord */
    color: #ffffff; /* Белый текст */
    line-height: 1.6;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

header {
    background: rgba(54, 57, 63, 0.9); /* Полупрозрачный темный фон */
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid #7289da; /* Цвет, похожий на Discord */
}

    header h1 {
        margin-bottom: 10px;
        font-size: 2.5em;
        font-family: 'Dela Gothic One', cursive;
        animation: slideIn 0.5s ease-in-out;
        color: #ffffff; /* Белый цвет заголовка */
    }

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header p {
    font-size: 1.2em;
    color: #b9bbbe; /* Светло-серый цвет для текста */
}

nav {
    margin-top: 10px;
}

    nav ul {
        list-style: none;
    }

        nav ul li {
            display: inline;
            margin: 0 15px;
        }

            nav ul li a {
                color: #ffffff; /* Белый цвет ссылок */
                text-decoration: none;
                font-weight: bold;
                transition: color 0.3s;
            }

                nav ul li a:hover {
                    color: #7289da; /* Цвет при наведении */
                    transform: scale(1.1);
                }

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(47, 49, 54, 0.8); /* Полупрозрачный темный фон */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in;
}

h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #7289da; /* Цвет заголовка */
    font-family: 'Dela Gothic One', cursive;
}

form {
    display: flex;
    flex-direction: column;
}

    form label {
        margin-bottom: 5px;
        font-weight: bold;
        color: #b9bbbe; /* Светло-серый цвет для меток */
    }

    form input {
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #40444b; /* Темный цвет рамки */
        border-radius: 4px;
        font-size: 1em;
        background: #40444b; /* Темный фон для полей ввода */
        color: #ffffff; /* Белый текст */
    }

    form button {
        padding: 10px;
        background: #7289da; /* Цвет кнопки */
        color: #ffffff; /* Белый текст */
        border: none;
        border-radius: 4px;
        font-size: 1em;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }

        form button:hover {
            background: #5b6eae; /* Цвет кнопки при наведении */
            transform: scale(1.05);
        }

footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(54, 57, 63, 0.9);
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    table th, table td {
        padding: 10px;
        border: 1px solid #40444b;
        text-align: left;
    }

    table th {
        background: #7289da;
        color: white;
    }

    table tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.1);
    }

    table tr:hover {
        background: rgba(255, 255, 255, 0.2);
    }

.logo {
    max-width: 250px;
    position: absolute;
    top: 0px;
    right: 20px;
}
