body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #0e0e0e;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.progress-bar {
    width: 300px;
    height: 20px;
    background-color: #444;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.progress {
    width: 25%;
    height: 100%;
    background: linear-gradient(45deg, #E7651D 25%, #ff8c42 50%, #E7651D 75%);
    background-size: 200% 100%;
    animation: loadProgress 2s forwards, waveAnimation 1.5s infinite linear reverse;
}

@keyframes waveAnimation {
    0% { background-position: 200% 0; }
    100% { background-position: 0% 0; }
}


@keyframes loadProgress {
    from { width: 0; }
    to { width: 25%; }
}

.discord-button {
    background-color: #5865F2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s;
}

.discord-button:hover {
    background-color: #4854c7;
}
.logo{
    width: 60%;
    height: auto;
    position: relative;
    bottom: 250px;
}

.discord{
    vertical-align: middle;
    margin-right: 10px;
    width: 30px;
    height: auto;
}

.discord-contener{
    position: fixed;
    bottom: 200px;
}

.progres-contener{
    position: fixed;
    bottom: 330px;
}