<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  align-items: center;
  background-attachment: fixed;
  background-image: url("../media/png/bgcollage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  height: 100%;
  justify-content: center;
  line-height: 1.7;
}
.required {
  background-color: #000;
  border: dashed 1px red;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin: 0.7em 0;
}
.btn {
  background: #f8e71c;
  border-radius: 6px;
  color: #000;
  cursor: pointer;
  font-size: 36px;
  height: 90px;
  letter-spacing: -2px;
  line-height: 90px;
  margin: 20px 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s;
  width: 47%;
}
.btn:hover {
  background-color: lime;
}
.btn--flex {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.btn--flex-column {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
  width: 100%;
}
.btn--small {
  background: #f8e71c;
  border-radius: 6px;
  color: #000;
  cursor: pointer;
  font-size: 20px;
  height: 65px;
  letter-spacing: -1px;
  line-height: 65px;
  margin: 10px 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s;
  width: 50%;
}
.btn--small:hover {
  background-color: lime;
}
.input {
  background-color: #d8d8d8;
  border: 0;
  border: solid 1px #979797;
  border-radius: 5px;
  font-size: 20px;
  margin: 1.5rem 0;
  padding: 1.5rem;
}
.content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.content--bg {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.3);
  padding: 10px;
  text-align: center;
  width: 40%;
}
.content--p {
  color: #f8e71c;
  font-size: 30px;
  font-weight: 400;
  margin: 1rem 0;
  text-transform: uppercase;
}
.content--p-2 {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.container__box-2--form {
  align-items: center;
  display: none;
  flex-direction: column;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
  .container__box-2--form {
    padding: 1em;
  }
}
@media only screen and (max-width: 900px) {
  body {
    background-position: center;
  }
  .content--bg {
    width: 80%;
  }
  .btn {
    width: 23rem;
  }
}
@media only screen and (max-width: 675px) {
  .content--bg {
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  .btn {
    width: 18rem;
  }
}
@media only screen and (max-width: 500px) {
  .btn {
    font-size: 28px;
    width: 14rem;
  }
  .btn--small {
    font-size: 16px;
    width: 80%;
  }
}
@media only screen and (max-width: 400px) {
  .content--bg {
    width: 95%;
  }
  .btn {
    font-size: 24px;
    width: 12rem;
  }
  .btn--small {
    width: 90%;
  }
}
a {
  color: inherit;
  text-decoration: none !important;
}
</pre></body></html>