*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Roboto";
 }
 
 .splash-wrapper{
    width: 100%;
    height: 100vh;
    position: fixed;
    transition: 3s ease-in-out forwards;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
 }
 
 
 .splash-content{
    position: absolute;
    left: 35%;
    top: 34%;
    width: 120px;
 }
 
 
 
 .image-wrapper{
    text-align: center;
 }
 
 #image{
    width:100%;
    border-radius: 50%;
    z-index: 20;
    animation: fadeIn 1s ease-in;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.5);
 }
 
 .text-wrapper{
    color : white;
    display: flex;
    animation: fadeIn 1.5s ease-in;
    justify-content: center;
 }
 
 .text1, .text2, .text3{
    font-size: 1.7em;
    font-weight: bold;
    margin: 4px;
 }
 
 
 
 @keyframes fadeIn{
    0%{
       opacity: 0;
    }
    100%{
       opacity: 1;
    }
    
 }
 
 @keyframes remove {
    0%{
       opacity: 1;
    }
    
    100%{
       opacity: 0;
    }
 }
 
 @keyframes removeText {
    0%{
       opacity: 1;
    }
    100%{
       opacity: 0;
    }
    
 }
 
 @keyframes changeBackground {
    0%{
       background-color: black;
       /* opacity: 1; */
    }
    100%{
       background-color: transparent;
       opacity: 0;
       z-index: -2;
    }
    
    
 }



