@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-align: center;
}
body {
  background: #b71841;
  background-image: url("../img/background-red.png");
  background-size: cover;
}
h1 {
  margin-top: 100px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 48px;
}
h3 {
  margin-top: 25px;
  font-family: montserrat;
  font-weight: 300;
  font-size: 24px;
}
p {
  margin-top: 50px;
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 700;
}
.red {
  background: #b71841;
  height: 30px;
  width: 100%;
}
.white {
  background: white;
  width: 100%;
}
.white img {
  width: 175px;
  padding: 20px;
}
.container {
  color: white;
}
.box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

@media only screen and (max-width: 640px) {
    body {
        background-size: auto;
    }
  h1 {
    margin-top: 150px;
    font-size: 36px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 16px;
  }
}
