body {
    color: rgb(34, 14, 39);
    font-size: 0.875rem;
    line-height: 1.43;
    background: linear-gradient(rgb(237, 225, 204) 0%, rgb(237, 76, 40) 100%);
    font-family: Lato, sans-serif;
    margin: 0px;
    padding: 0px;
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

a,
a:hover {
    text-decoration: none;
}

.progress-bar-container {
    width: 100%;
    background-color: #f3f3f3;
    overflow: hidden;
    position: relative;
    height: 5px;
}

.progress-bar-1 {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -100%;
    height: 5px;
    width: 100%;
    line-height: 5px;
    animation: progress-animation-1 3s ease-in-out infinite;
    display: flex;
}

.progress-bar-2 {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0%;
    height: 5px;
    width: 100%;
    line-height: 5px;
    animation: progress-animation-2 3s ease-in-out infinite;
    display: flex;
}

.progress-bar-item {
    height: 5px;
    width: 33.3333%;
    background: rgb(32, 85, 242);
    background: linear-gradient(90deg, rgba(32, 85, 242, 0.25) 0%, rgba(32, 85, 242, 1) 50%, rgba(32, 85, 242, 0.25) 100%);
    line-height: 5px;
}

@keyframes progress-animation-1 {
    from {
        left: -100%;
    }

    to {
        left: 0%;
    }
}

@keyframes progress-animation-2 {
    from {
        left: 0%;
    }

    to {
        left: 100%;
    }
}

#imgWelcome {
    width: 100%;
    height: 99%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#imgWelcome img {
    position: absolute;
    width: 100%;
    height: auto;
    /* max-width: 600px; */
    top: 100%;
    /* animation: welcome-animation 1s ease-in-out forwards; */
}

.fade-in {
    animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}