body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-image: url('resources/images/bg.webp');
    background-size:100%;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    height: 82vh;
}



.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    margin-top: -20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.progress-bar {
    width: 300px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin: 0 auto 10px auto;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #ffffff;
    border-radius: 15px 0 0 15px;
}

button {
    background-color: #ffffff;
    border: none;
    padding: 10px 20px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links img {
    width: 30px;
    margin: 0 10px;
}

#percentage {
    margin-top: 10px;
}

/* Media query para pantallas pequeñas */
@media (max-width: 600px) {
    body {
        background-repeat: repeat;
        height: 70vh;
        background-size:100%;
    }
}
