body,
html {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  background-image: url("background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.centered-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.centered-content img {
  width: 150px;
  margin-bottom: 0px;
  margin-top: 50px;
}

.centered-content p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
}

/* For responsiveness */
@media screen and (max-width: 600px) {
  .centered-content img {
    width: 170px;
  }
  .centered-content p {
    font-size: 24px;
  }
}
