*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html,
body,
main {
  width: 100%;
  height: 100vh;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: white;
  color: #222;
  overflow: hidden;
  position: relative;
}
html {
  scroll-behavior: smooth;
}
.home {
  width: 100%;
  height: 100%;
  background-image: url(./images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
.home h1 {
  font-size: 8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 10px;
}
.home h1 span {
  color: #ff3300;
}
.home strong {
  font-size: 5rem;
  font-family: 'Poppins', sans-serif;
  color: #ffd101;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}
@media screen and (max-width: 768px) {
  .home h1 {
    font-size: 16vw;
  }
  .home strong {
    font-size: 12vw;
  }
}
