@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F4EBE4;
  flex-direction: column;
  overflow: hidden;
}

body > img {
  width: 400px;
  height: 400px;
}

body > h1 {
  font-family: 'Roboto', sans-serif;
  color: #1B4A9C;
  font-size: 50px;
  margin-top: 50px;
}


@media (max-width: 900px) {
  body > img {
    width: 300px;
    height: 300px;
  }

  body > h1 {
    font-size: 30px;
    margin-top: 40px;
  }
}