* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto Flex", sans-serif;
}

a {
    text-decoration: none;
    color: rgb(11, 133, 72);
}

.welcome-container-page {
    height: 30vh;
    background: linear-gradient(0deg, #070c3fc4, #070c3fc4 80%), url("/static/assets/img/bg.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    align-items: center;
}

/** Loader */

#loader {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    animation: spin 0.5s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader img {
    width: 200px;
}

.center-loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }

    50% {
        transform: scale(0.8);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}