*,
*::after,
*::before {
  box-sizing: border-box;

  font-family: monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;

  margin: 0;
  padding: 0;
}

:root {
  --blue: #92dce5;
  --dark-blue: #09192e;
  --black: #0a0a0a;
  --light-white: rgb(236, 236, 236);

  --desktop-width: 1180px;
  --info-height: 33px;

  --font-size-4: 17px;
  --font-size-5: 18px;
  --font-size-6: 20px;
  --font-size-7: 22px;
  --font-size-8: 24px;
  --font-size-9: 27px;
  --font-size-10: 30px;
  --font-size-11: 40px;

  --space-10: 10px;
  --space-12: 30px;
}

body {
  color: white;
  background-color: #01091C;
  background-image: url(../assets/b_xl_2_0.webp);
  background-repeat: no-repeat;
  background-size: auto 90vh;
}

a {
  color: white;
  text-decoration: none;
  cursor: pointer !important;
}

a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.contact-button {
  border: 2px solid var(--blue);
  padding: 15px 25px;
  color: var(--blue);
  border-radius: 30px;
  cursor: pointer;
}

.contact-button:hover {
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* tablet */
@media only screen and (min-width: 600px) {
  body {
    background-size: 100%;
  }
}

/* desktop */
@media only screen and (min-width: 1200px) {
  *,
  *::after,
  *::before {
    font-size: 16px;
  }

  :root {
    --font-size-10: 30px;
  }

  #info-inner {
    width: var(--desktop-width);
    margin: auto;
  }

  .desktop-flex {
    display: flex !important;
  }
}

/* utility classes */
.color-blue {
  color: var(--blue);
}

.font-size-10 {
  font-size: var(--font-size-10);
}

.font-size-9 {
  font-size: var(--font-size-9);
}

.font-size-7 {
  font-size: var(--font-size-7);
}

.font-size-5 {
  font-size: var(--font-size-5);
}

.display-flex {
  display: flex;
}

.desktop-flex {
  display: none;
}

.margin-auto {
  margin: auto;
}

.h-10 {
  height: var(--space-10);
}

.underline {
  text-decoration: underline;
}

.nowrap {
  text-wrap: nowrap;
}