@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
* {
  padding: 0;
  margin: 0;
  outline: 0;
  scroll-behavior: smooth;
  transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
body {
  background-color: #003a42;
  color: #ffffff;
  font-family: Urbanist, sans-serif;
  display: grid;
  place-items: center;
  height: 100vh;
  max-height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1549980384-d61217e50c4b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1527&q=80");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}
main {
  margin: 10rem 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
div.text {
  text-align: center;
  margin: 3rem 0 0 0;
}
div.text > p {
  font-size: 1.1rem;
}
img.logo {
  width: 10rem;
}
span {
  font-family: "Material Icons";
}
@media only screen and (max-width: 600px) {
  main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  div.text {
    text-align: center;
    margin: 0rem 0 0 0;
  }
  h4 {
    margin: 0 0 10rem 0;
  }
}
