@import url('https://fonts.googleapis.com/css2?family=Praise&display=swap');
body, html{
    padding: 0;
    margin: 0;
}
body{
    background-color: #ffffff;
    font-family: 'Praise', cursive;
}
.logo{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.logo img{
    max-width: 100%;
}
.logo h1{
    margin-bottom: 0;
    font-size: 75px;
    margin-top: 5px;
    color: #f7e82f;
    font-weight: 500;
    animation: color-change 4s infinite;
}
@keyframes color-change {
    0% { color: #17469E;
    transform: translateY(0); }
    50% { color: #17469E; 
        transform: translateY(-5px);}
    100% { color: #ED1B36;
        transform: translateY(0); }
  }
@media (max-width:575px){
    .logo h1 {
        font-size: 65px;
    }
}