/* Styles for the body element */
html{
  /* background: linear-gradient(to top right, #010000, #009699); */
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    /* background: linear-gradient(to top right, #010000, #009699); */
}

.app-icon {
    position: relative; 
    width: 200px;
    height: 200px;  
    background: url('edumeter-logo.webp') no-repeat center center;
    background-size: contain;
}



/* Styles for the progress bar container */
.progress-container {
    position: relative;
    width: 240px;
    height: 8px;
max-width: 240px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.25s ease-out;
}

/* Styles for the progress bar */
.progress-bar {
    display: block;
    height: 100%;
    background-color: #FAAD19;
    width: 0;
    transition: width 0.5s ease;
}

/* CSS for a fade-in animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

/* Keyframes for the fadeIn animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}