@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Nerko+One&display=swap');

body {
    font-family: "Boogaloo", sans-serif;
    background-color: #FFFFFF;
    color: #202A36;
}

/* Estilo de títulos */
h1, h2, h3 {
    font-family: "Nerko One", sans-serif;
}

/* Navbar */
.navbar {
    background-color: #031D38;
    border-radius: 0;
    width: 100%;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-menu {
    width: 100%;
    justify-content: space-between;
}


.logo {
    max-width: 70px;
    height: 70px;
    margin-right: 15px;
    border-radius: 15px;
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

.logo:hover {
    transform: scale(1.2); /* Aumenta el tamaño del logo */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Agrega sombra */
}

@media screen and (max-width: 768px) {
    .logo {
        max-width: 70px;
    }
}

.navbar-item {
    color: #FFFFFF !important;
    border-radius: 10px;
    font-weight: bold;
    font-size: 20px;
}

.navbar-item:hover {
    background-color: #FCC700 !important;
    color: #031D38 !important;
}

.footer {
    background-color: #031D38;
    color: #FFFFFF;
    padding: 2rem 1rem;
    border-radius: 20px 20px 0 0;
}

.title.is-4 {
    color: #FCC700;
    font-size: 35px;
}

.title.is-2 {
    color: #FCC700;
    font-size: 55px;
}

.subtitle.is-4 {
    color: #031D38;
    font-size: 25px;
}

.strong{
    color: #031D38;
}

.button.is-primary {
    background-color: #FCC700;
    color: #031D38;
    border-radius: 15px;
}

.button.is-primary:hover {
    background-color: #031D38;
    color: #FCC700;
}

#loadingContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
}


#loadingGif {
    width: auto;
    height: auto;
    margin-bottom: 15px;
}


#progressBarContainer {
    width: 80%;
    max-width: 400px;
}


#progressBar {
    height: 8px;
    transition: width 0.3s ease-in-out;
}