@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  color: #cbcbcb;
  background: #000000;
  overflow: hidden;
}

:root {
  --purple: #34295d;
  --green: #23b19f;
  --blue: #5db8d1;
  --cyan: #5beae6;
  --lightblue: #bff7f2;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  margin: 0 0.3em 0.3em 0;
  border-radius: 4px;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 300;
  text-align: center;
  transition: all 0.4s;
  text-transform: capitalize;
  cursor: pointer;
}

.btn-primary {
  color: #ffffff;
  border: 0.1em solid var(--green);
  background: var(--green);
}

.btn-primary:hover {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.btn-primary:focus, .btn-primary:focus:active, .btn-primary:active {
  background: var(--green);
  border-color: var(--green);
  outline: none;
  color: #ffffff;
  box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
  -webkit-box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
  box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
}

.btn-secondary {
  color: #ffffff;
  border: 0.1em solid var(--blue);
  background: var(--blue);
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.btn-secondary:focus, .btn-secondary:focus:active, .btn-secondary:active {
  background: var(--blue);
  border-color: var(--blue);
  outline: none;
  color: #ffffff;
  box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
  -webkit-box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
  box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
}

.btn-mega {
  position: relative;
  background: var(--green);
  text-transform: initial;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.4px;
  border-radius: 10px;
  box-shadow: none;
  padding: 19px 30px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.btn-mega:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 1px var(--green);
  border-radius: 10px;
  z-index: -1;
  top: 10px;
  left: 10px;
  transition: all 0.3s ease-out;
}

.btn-mega:hover {
  background: var(--blue);
  color: #ffffff;
}

.btn-mega:hover:before {
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.btn-mega:focus, .btn-mega:focus:active, .btn-mega:active {
  background: var(--green);
  border-color: var(--green);
  outline: none;
  color: #ffffff;
  box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
  -webkit-box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
  box-shadow: 0 0 0 0.25rem rgb(35 177 159 / 50%);
}

.coming-soon {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

/*.coming-soon::after {
  content: "";
  background: url("/assets/images/geo-bg.jpg");
  background-size: contain;
  opacity: 0.05;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}*/

.highlight {
  color: var(--lightblue);
  font-weight: 100;
}

.coming-soon h1 {
  font-size: 72px;
  font-weight: 900;
  color: var(--green);
}

.coming-soon p {
  font-size: 22px;
  padding: 20px 0;
  color: #cbcbcb;
}

.ball {
  position: absolute;
  border-radius: 100%;
  opacity: 0.7;
  z-index: 1;
}

.cookie-consent {
  background: #ffffff;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 3;
}
