@import url('https://fonts.googleapis.com/css2?family=Varela&display=swap');

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
  }

h1{
    font-family: 'Varela', sans-serif;
    text-align: center;
    font-size: 50px;
    margin-top: 0;
    color: #fff;
    font-weight: 400;
    
}
img {
    width: 80%;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width:991px) {
   h1{
    font-size:40px;
   } 
    
}
@media screen and (max-width:768px) {
    h1{
     font-size:25px;
     padding: 0 80px;
    } 
     
 }
 @media screen and (max-width:350px) {
    h1{
     font-size:25px;
     padding: 0 20px;
    } 
     
 }