@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');

body {
    background-color: #FEEE00;
    background-image: url(../assets/BG\ Pattern.png);
    padding: 25px;
    font-family: 'Cairo';
    overflow: hidden !important;
    margin: auto;
}
.logo {
    display: block;
    margin: auto;
    width: 50%;
}
.center {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative;
    animation-name: fade-up;
    animation-duration: 4s;       
}
@keyframes fade-up {
    0%   {left:0px; bottom:500px;}
    100% {left:0px; bottom:0px;}
}