* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    text-align: center;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.discord-button {
    display: inline-block;
    background-color: #7289DA;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background-color: #5b6eae;
}

.discord-button:active {
    background-color: #4c5a8c;
}
