*{
  box-sizing: border-box;
}
html {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  padding:0;
  margin: 0;
  color: #fff;
}
body {
  padding: 0;
  margin: 0;
  height: 100vh;
  background-image: url('./bg-1.jpg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
a,
a:visited,
a:hover {
  color: #fff;
  text-decoration: none;
}
main {
  height: 100%;
}
img {
  margin: 0;
  height: 100%;
  width: 100%;
  display: block;
}
h1 {
  font-weight: bold;
}
.container {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
}
.text {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem 0 4rem;
}
.image {
  object-fit: cover;
}
.title {
  font-size: 4rem;
}
.content {
}
.content p {
  margin: 0;
  margin-bottom: 0.2rem;
}
.hidden {
  display:none;
}
@media (max-width: 768px) {
  body {
    background-image: url('./bg.jpg');
  }
  .container {
    display: block;
  }
  .title {
    margin-top: 5rem;
    font-size: 3rem;
  }
  .flex-content {
    width: 100%;
  }
  .text {
    padding: 0 2rem;
  }
  .hidden {
    display: block;
    padding: 0 2rem;
  }
  .hidden img {
    height: auto;
  }
  .hidden-mobile {
    display: none;
  }
}
