@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
  background-color: rgb(255, 242, 213);
}

.container {
  display: flex;
  justify-content: space-evenly;
  width: 80%;
  text-align: center;
}

.container .box {
    margin: 20px;
}

.container .box .logo {
  width: 40px;
}

@media screen and (max-width: 450px) {
  .container {
    flex-direction: column;
  }
}
