@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'GmarketSansMedium', sans-serif;
    background: linear-gradient(135deg, #7289da, #899dc6, #99aab5);
    color: #fff;
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.title {
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.description {
    font-size: 1.2em;
    margin-bottom: 40px;
    animation: fadeIn 3s ease-in-out;
}

.discord-logo {
    width: 200px;
    margin: 0 auto 20px;
    animation: bounce 2s infinite;
}

.join-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #7289da;
    background: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.join-button:hover {
    transform: scale(1.1);
    background-color: #f1f1f1;
}

.more-info {
    padding: 50px 20px;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.more-info img {
    width: 50%;
    max-width: 300px;
    border-radius: 15px;
    margin-right: 20px;
}

.more-info-content {
    flex: 1;
    text-align: center;
}

.more-info-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.more-info-content p {
    font-size: 1em;
    margin-bottom: 20px;
}

.more-info-content a {
    color: #F9D0C8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.more-info-content a:hover {
    color: #e89a91;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.footer a {
    color: #F9D0C8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer a:hover {
    color: #e89a91;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
