* {
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1;
  font-weight: 400;
  width: 100%;
  color: #000000;
  padding: 0;
  margin: 0;
  line-height: 1.2;
  background-color: #ffffff;
}
.container {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.header {
  text-align: center;
}
.title h1 {
  font-size: 69px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  margin: 15px 0 40px 0;
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.footer p {
  padding: 0 !important;
  margin: 0 !important;
}
.footer-bar {
  background-color: #F8F8F8;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 11px;
  margin-top: 15px;
  padding: 9px;
}
.footer-bar a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-bar a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 0px) and (max-width: 1023px) {
  .container {
    gap: 30px;
  }
  .title h1 {
    font-size: 55px;
  }
  .footer-bar {
    font-size: 11px;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .container {
    gap: 25px;
  }
  .title h1 {
    font-size: 45px;
    margin: 13px 0 30px 0;
  }
  .footer-bar {
    font-size: 11px;
    margin-top: 11px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 500px) {
  .container {
    gap: 15px;
  }
  .title h1 {
    font-size: 35px;
    margin: 13px 0 25px 0;
  }
  .footer-bar {
    font-size: 11px;
    margin-top: 9px;
    gap: 3px;
  }
}
