@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


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

body{
    font-family: 'Poppins';
    height: 100vh;
    background-color: #e0e0e0;
}

.main-title{
    color: #5fa3ce;
    font-size: 2rem;
    animation: title 1s linear;
    font-weight: 600 !important;
}

@keyframes title{
    0%{
        opacity: 0;
        color:#212529;
    }50%{
        opacity: 0.5;
        color: #293f61;
    }100%{
        opacity: 1;
        color: #5fa3ce;
    }
}

.text-info-gstm{
    color: #e0e0e0 !important;
    font-size: 1.2em;
    font-weight: 420;
}

.message{
    width: 80%;
    border-radius: 30px;
    background-color: rgba(0,0,0,0.5);
    padding: 1.5em;
    /* box-shadow: 0 0 30px 20px #212529; */
}


.bg-slider{
    transition: background-image 500ms ease;
    background-image: url('/public/assets/img/BG-IMAGE-TWO.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #5fa3ce;
    animation: slider 30s linear infinite;
}

@keyframes slider{
    0%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-PNG-CHANGED.png');
    }20%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-TWO.png');
    }25%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-PNG-CHANGED.png');
    }45%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-PNG-CHANGED.png');
    }50%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-FOUR.png');
    }70%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-FOUR.png');
    }75%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-PNG-CHANGED.png');
    }95%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-FOUR.png');
    }100%{
        transition: background-image 500ms ease;
        background-image: url('/public/assets/img/BG-IMAGE-TWO.png');
    }
}


.bg-video{
    position: absolute;
    z-index: -1;
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden;
}

.bg-video > video{
    width: 100% !important;
}
