html {
  scroll-behavior: smooth;
  font-family: 'Open Sans', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  background-image: url('../img/500/bedroom.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon {
  max-width: 100%;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .6));
}

.text-container {
  margin: 2rem 0;
  padding: 0 1rem;
}

h1,
p {
  color: #fff;
  text-shadow: 0 3px 5px rgba(0, 0, 0, .6);
}

h1 {
  font-size: 1.5rem;
}

p {
  font-size: 16px;
}

@media screen and (min-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 24px;
  }
}
