.home-screen {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/src/img/likes.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 5%;
}
.home-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-screen__title {
  font-size: 60px;
  font-weight: 700;
  font-family: 'Fira Sans Condensed';
  color: #fcf7f7;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
  text-wrap: balance;
}
.home-screen__subtitle {
  font-size: 32px;
  font-family: 'Roboto';
  font-weight: 300;
  text-align: center;
  margin-top: 5px;
  color: #f3e2e2;
}
.home-screen__button {
  width: 50%;
  min-width: fit-content;
  margin: 0px auto;
  margin-top: 40px;
  text-decoration: none;
  background-color: #ffefef;
  transition: 0.5s;
  padding: 20px 40px;
  border-radius: 20px;
  font-family: 'Roboto';
  font-size: 18px;
  font-weight: 700;
  color: rgb(26, 66, 25);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.home-screen__button:hover {
  box-shadow: 0px 4px 10px 10px rgba(208, 208, 209, 0.1);
  background-color: #fbf9fd;
}

@media (width <= 800px) {
  .home-screen__title {
    font-size: 50px;
    padding: 0px 10px;
  }
  .home-screen__button {
    margin-top: 30px;
  }
}

@media (width <= 450px) {
  .home-screen__title {
    font-size: 32px;
  }
  .home-screen__button {
    width: 80%;
  }
}