body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

.maintenance-container {
    text-align: center;
    padding: 40px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #009900;
    margin-bottom: 20px;
}

p {
    color: #ccc;
    margin-bottom: 10px;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #009900;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 40px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.discord-link {
    display: flex; /* Resmi ve yazıyı yan yana getirmek için */
    align-items: center; /* Yazıyı resmin ortasına hizalamak için */
    justify-content: center; /* Tüm bağlantıyı ortalamak için */
    margin-top: 20px;
}

.discord-logo {
    width: 30px; /* Resmi küçültmek için boyutu ayarla */
    height: 30px;
    margin-right: 10px; /* Resim ve yazı arasındaki boşluk */
}

a {
    color: #5664ec;
    text-decoration: none;
}

a:hover {
    color: #5664ec;
}
.centered-logo {
    width: 1px; /* İstediğin boyutu ayarlayabilirsin */
    height: auto;
    display: block;
    margin: 0 auto 10px auto; /* Ortalar ve altına boşluk ekler */
}

