﻿body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/*
#animation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #602c88; 
    color: #fff; 
    animation: fadeIn 2s ease-out; 
}   
*/
section.main_screen_frist {
    width: 100%;
    background: #ab9fe8;
    animation: fadeIn 2s ease-out;
}
.main_screen_logo_center img {
    width: 60vw;
    margin: 0 auto;
    display: block;
    margin-top: -25vh;
}

.main_screen_logo_center {
    display: flex;
    align-items: center;
    height: 100vh;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*
.vertical-line {
    color: white;
    font-weight: bold;
    font-size: 24px;
}

    .vertical-line::before {
        content: " ";
        opacity: 0.4;
        border-left: solid #ACC0D8 5px;
        display: inline-block;
        height: 19px;
        left: 0;
    }
*/