
/* text elements*/
.text-glow {
    color: #F9F9F9;
    text-shadow: 0 0 5px #D9D9D9, 0 0 10px #D9D9D9, 0 0 15px #D9D9D9;
}

.text-colour-white {
    color: white;
}

.text-center {
    text-align: center;
}

.text-glow:hover{
    color: #F9F9F9;
    text-shadow: 0 0 5px #F9F9F9, 0 0 10px #F9F9F9, 0 0 15px #F9F9F9;
}

.text-glow-small {
    color: #F9F9F9;
    text-shadow: 0 0 5px #F9F9F9, 0 0 10px #F9F9F9;
}

.text-glow-nohover {
    color: white;
    text-shadow: 0 0 5px #D9D9D9, 0 0 10px #D9D9D9, 0 0 15px #D9D9D9;
}

.header {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    display: block;
}

.subtext {
    margin-top: 0;
    padding-top: 0;
    line-height: 1.2;
    font-size: 1rem;
}

.noline {
    text-decoration: none;
}


/* background videos */

.background-dark {
filter: brightness(100%)
}

.background-blur {
filter: blur(17px);
}


/* website elements */


.tab {
      width: 300px;
      height: 150px;
      background-color: rgba(53, 53, 53, .3);
      border-radius: 20px;
      font-family: sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
      text-align: center;
    }

.main-homepage {
    background-color: rgba(13, 13, 13, .3);
    border-radius: 5px;
    border: 1px solid rgba(53, 53, 53, .23);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    padding: 24px 28px;
    backdrop-filter: blur(23px);
    text-decoration: none;

    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-button:hover {
    transform: translateY(-1px);
}

.footer {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 10px 50px;

    background-color: rgba(5, 5, 5, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(28px);
    text-decoration: none;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main-col {
    flex: 1.4;
}

.footer-col h3 {
    margin: 0 0 14px 0;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.45;
}

.footer-col a {
    opacity: 0.65;
    line-height: 1.6;
    font-size: 14px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
    opacity: 1;
    transform: translateY(-1px);
}


/* google fonts */
.font-doto {
    font-family: "Doto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "ROND" 0;
}

.font-bytesized {
  font-family: "Bytesized", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}


body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: stretch;
      background-color: #0B0B0B;
}

.main-homepage-wrapper {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
}
