* {
    margin: 0;
    padding: 0;
    font-family: Ubuntu, sans-serif;
    letter-spacing: .125rem;
    scroll-behavior: smooth;
}

html, body {
    min-height: 100%;
    height: 100%;
    background-image: url("./../images/background_low.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

a:hover, a:active {
    color: #864dff;
}

h1, h2, h3, h4, p {
    color: #fff;
    text-align: center;
}

.navbar {
    width: 100%;
    height: 12%;
    position: fixed;
    transition: 1s;
    box-shadow: 0 1px rgba(105, 106, 109, 0.5);
    z-index: 1000;
    background-color: #212121;
}

.navbarContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbarLeft, .navbarRight {
    display: flex;
    align-items: center;
}

.navbarLeft {
    justify-content: flex-end;
    margin-right: 3%;
    flex: 1;
}

.navbarRight {
    justify-content: flex-start;
    margin-left: 3%;
    flex: 1;
}

.navbarNotchDown, .navbarNotchTop {
    width: 80px;
    height: 25px;
    background-color: #212121;
    box-shadow: 0 1px rgba(105, 106, 109, 0.5);
    border-radius: 0 0 90px 90px;
    position: absolute;
    left: 50%;
    display: none;
    transform: translateX(-50%);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.navbarNotchTop {
    display: none;
}

.navbarNotchDown {
    display: none;
}

.down {
    width: 0;
    height: 0;
    border-left: 1.5em solid transparent;
    border-right: 1.5em solid transparent;
    border-top: 0.75em solid #fff;
    display: inline-block;
    margin: 20px;
}

.up {
    width: 0;
    height: 0;
    border-left: 1.5em solid transparent;
    border-right: 1.5em solid transparent;
    border-bottom: 0.75em solid #fff;
    display: inline-block;
    margin: 20px;
}

.logoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2%;
    transition: 0.75s;
    position: relative;
    top: 0%;
}

.logo {
    height: 200%;
    width: 10.5vh;
    transition: transform 1.25s, width 1.25s, height 1.25s;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.2);
}

.navbarItem {
    font-size: 120%;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 1px 1px 5px #000000;
    cursor: pointer;
    margin: 0 5%;
    transition: opacity 0.5s;
}

.navbarText {
    color: #fefefe;
    text-decoration: none;
    transition: all 0.45s, opacity 0.25s;
    display: block;
}

.navbarText:hover {
    transform: scale(1.125);
    color: #864dff;
}

.mainContent {
    height: 100%;
    background-image: url("./../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mainContent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.overlayWrapper {
    position: relative;
    z-index: 1;
    color: #fff;
}

.textWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlayWrapper h1 {
    font-size: 450%;
    font-weight: bold;
    margin-bottom: 0.5%;
}

.overlayWrapper h2 {
    font-size: 175%;
    margin-bottom: 8%;
}

.overlayWrapper a {
    text-decoration: none;
    color: #fff;
}

.singleTilePlaceholder h1 {
    font-size: 450%;
    font-weight: bold;
    margin-bottom: 0.5%;
}

.singleTilePlaceholder h2 {
    font-size: 175%;
    margin-bottom: 8%;
}

.singleTileField h2 {
    font-size: 150%;
    margin-bottom: 0;
}

.singleTilePlaceholder a {
    text-decoration: none;
    color: #fff;
}

.animatedText {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #504dff, #eb30ff, #504dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    animation: gradient-animation 8s linear infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 150% 0%;
    }
}

.buttonWrapper {
    display: flex;
    gap: 1em;
    margin-top: 1em;
    justify-content: center;
    align-items: center;
}

.customButton {
    padding: 12px 17px;
    font-size: 23px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #504dff;
    border: none;
    border-radius: 8px;
    width: auto;
    text-decoration: none;
    transition: background-color 0.5s, transform 0.5s;
    white-space: nowrap;
}

.customButton:hover {
    background-color: #864dff;
    transform: scale(1.025);
    color: #fff;
}

.customButton:visited, .customButton:active {
    color: #fff;
}

.introText {
    margin-bottom: 1em;
    line-height: 145%;
    font-size: 150%;
    text-align: center;
}

.infoSection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1%;
    flex-wrap: wrap;
    background-color: #212121;
    padding: 1.5%;
    box-shadow: inset 0 1px rgba(105, 106, 109, 0.5), inset 0 -1px rgba(105, 106, 109, 0.5);
}

.infoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.infoBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 130%;
    padding-left: 2%;
    padding-right: 2%;
    width: 25%;
    text-align: center;
    height: 100%;
}

.infoTitle {
    font-size: 150%;
    padding-bottom: 3%;
    font-weight: 900;
}

.icon {
    transition: 0.5s;
    height: auto;
    width: 80px;
    margin-bottom: 10px;
}

.icon:hover {
    transform: scale(1.125);
}

.sponsor:hover {
    transform: scale(1.125);
}

.sectionPlaceholder {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2%;
}

.sponsor {
    width: 22%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    transition: 1s;
    margin-bottom: 3%;
}

.footer {
    height: 12%;
    background-color: #212121;
    display: flex;
    font-size: 125%;
    box-shadow: 0 -1px rgba(105, 106, 109, 0.5);
}

.footerLeft {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: left;
    align-items: center;
    color: #fff;
    margin-left: 2%;
}

.footerRight {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: right;
    align-items: center;
    color: #fff;
    margin-right: 2%;
}

.sectionTile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sectionTile h1 {
    margin-bottom: 1.25%;
}

.teamTile {
    background-color: rgba(33, 33, 33, .6);
    border-radius: 4px;
    padding: 10px;
    margin: 20px;
    width: auto;
    max-width: 1200px;
    box-sizing: border-box;
}

.teamTile h2 {
    text-align: center;
    padding-top: 10px;
    color: #fff;
}

.memberTileHolder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.memberTile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    box-sizing: border-box;
    margin: 10px;
}

.memberTile img {
    display: block;
    width: 100px;
    height: auto;
    margin-top: 10px;
}

.newsTileShort {
    background-color: rgba(33, 33, 33, .45);
    border-radius: 6px;
    max-width: 35%;
    width: auto;
    padding: 10px;
    padding-left: 4%;
    padding-right: 4%;
    margin: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.newsTileShort h2 {
    max-width: 60%;
    margin-top: 10px;
}

.newsTileShort p {
    margin: 24px;
    font-size: 110%;
}

.newsTileShort h4 {
    margin-top: 10px;
}

.infoTileHolder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 70%;
    max-width: 80%;
    box-sizing: border-box;
}

.infoTile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 26%;
    box-sizing: border-box;
    background-color: rgba(33, 33, 33, .45);
    border-radius: 6px;
    padding: 25px;
    margin: 10px;
    min-width: 15%;
}

.singleTileHolder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 75%;
    box-sizing: border-box;
    align-items: center
}

.singleTileField {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    box-sizing: border-box;
    background-color: rgba(33, 33, 33, .45);
    border-radius: 6px;
    padding: 20px;
    min-width: 50px;
}

.infoTile h3 {
    padding: 3px;
}

.infoTile h4 {
    padding: 5px;
}

.infoTile p {
    padding: 2px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.66);
    opacity: 0;
    transition: opacity 0.5s, background-color 0.5s;
}

.modalWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform: scale(0.9);
    transition: opacity 0.5s, transform 0.5s;
}

.modalContent {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    width: 40%;
    max-width: 500px;
    position: relative;
    transform: translateY(-30px);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.5s;
    background-color: #343434;
    color: #fff;
    text-align: center;
    font-size: 175%;
}

.singleTilePlaceholder {
    height: 88%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.singleTile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media only screen and (max-width: 1000px) {
    .navbarItem {
        font-size: 90%;
    }

    .logo {
        height: 100%;
    }

    .logoContainer {
        height: 120px;
        transition: 1s;
    }

    .overlayWrapper h1 {
        font-size: 350%;
    }

    .overlayWrapper h2 {
        font-size: 140%;
    }

    .customButton {
        font-size: 90%;
        padding: 1em 0.5em;
    }

    .introText {
        font-size: 120%;
    }

    .buttonWrapper {
        flex-direction: column;
        gap: 0.5em;
    }

    .footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 12%;
        padding-bottom: 14px;
    }

    .footerLeft, .footerRight {
        justify-content: center;
        text-align: center;
        width: 32%;
        margin-left: 0%;
        margin-right: 0%;
    }

    .infoContainer {
        flex-direction: column;
        gap: 1em;
        padding: 4%;
    }

    .infoBlock {
        width: 90%;
    }

    .infoTile {
        min-width: 70%;
    }

    .icon {
        width: 60px;
    }

    .modalContent {
        width: 80%;
        padding: 15px;
    }

    .navbarLeft, .navbarRight {
        flex-direction: column;
        margin: 0%;
        gap: 18%;
        font-size: 350%;
    }

    .navbarContainer {
        flex-direction: column;
    }

    .newsTileShort {
        max-width: 68%;
    }

    .singleTileHolder {
        flex-direction: column;
    }

    .singleTileField  {
        min-width: 250px;
    }
}

@media only screen and (max-width: 500px) {
    .overlayWrapper h1 {
        font-size: 200%;
    }

    .overlayWrapper h2 {
        font-size: 120%;
    }

    .infoTile {
        min-width: 120%;
    }

    .newsTileShort {
        max-width: 80%;
    }

    .singleTilePlaceholder h1 {
        font-size: 200%;
    }

    .singleTilePlaceholder h2 {
        font-size: 120%;
    }

    .navbarText {
        font-size: 75%;
    }
}

::-webkit-scrollbar {
    width: 14px;
    background: #212121;
}

::-webkit-scrollbar-track {
    background: #454545;
    box-shadow: inset 0 0 2px #000000;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #212121;
    box-shadow: 0 0 6px #000000;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #121212;
}

body.modal-open {
    overflow: hidden;
    padding-right: 14px;
}

div.modal-open {
    overflow: hidden;
    margin-right: 14px;
}

input {
  font-size: 75%;
  font-weight: 900;
  color: #fff;
  border: none;
  padding: 1%;
  border-radius: 6px;
  text-align: center;
  width: 60%;
  background-color: #777777;
  cursor: pointer;
  transition: 0.75s;
  margin: 1%;
  position: relative;
}

input:hover {
  transform: scale(1.05);
}

.tooltip {
    opacity: 0;
    position: absolute;
    background-color: #121212;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-size: 60%;
    z-index: 10;
    width: 200px;
    text-align: center;
    left: 30%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    white-space: nowrap;
}

a {
    color: #504dff;
    transition: 0.5s;
}