*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.comlogoContainer{
    max-width: 450px;
    display: flex;
    justify-content: center;
}

#comLogo{
   width: 100%;
}
.bannerFrame{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#074383, #2091c2);
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loadingText{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 65px;
    font-weight: bold;
    margin-top: 40px;
    text-align: center;
    display: flex;
    align-items: flex-end;
}


.dots{
    display: flex;
    flex-direction: row;
    margin-bottom: 12px;
    padding-left: 8px;
}
.dots .dot{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white;
    animation: loader;
    animation-duration:2s ;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    margin: 0 6px;
}

.dots .dot:nth-child(1){
    animation-delay: 0.3s;
}
.dots .dot:nth-child(2){
    animation-delay: 0.6s;
}
.dots .dot:nth-child(3){
    animation-delay: 0.9s;
}
.dots .dot:nth-child(4){
    animation-delay: 1.2s;
}


@keyframes loader {
    0%{
        opacity: 0.2;
        transform: scale(0.5);
    }
    20%{
        opacity: 1;
        transform: scale(1);
    }
    100%{
        opacity: 0.2;
        transform: scale(0.5);
    }
}