:root {
    --main-bg-color: #5ccafe;
    --main-box-bg-color: #00CACA;
    --font-color: #000000;
    --gold: #F4AF36;
    --teal: #00CACA;
    --blue: #0265ff;
    --purple: #B036F3;
    --lime: #8EF438;
    --pink: #FF3DB7;
}

header {
    display: flex;
    align-items: center;
    background-color: #EA3A3A;
    margin: 0px;
    padding: 10px;
    text-align: center;
    font-size: 32px;
    color: var(--gold);
    box-shadow: 0px 0px 5px 5px #00000055;
    z-index: 99;
    position: sticky;
    top: 0;
    animation-duration: 2s;
    animation-name: slide-in-top;
}

.dropdown {
    margin-left: auto;
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.drop-btn {
    width: 50px;
    height: 50px;
    font-size: 32px;
    background-color: var(--gold);
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 6px 0px 0px #a2762a;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
}

.drop-btn:hover {
    scale: 1.15;
    cursor: pointer;
}

.drop-btn:active {
    box-shadow: 0px 0px 0px 0px #008888;
    translate: 0px 6px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 20px;
    padding: 5px;
    background-color: var(--main-box-bg-color);
    min-width: 180px;
    z-index: 1000;
    border-style: solid;
    border-radius: 10px;
    border-color: #008888;
    border-width: 3px;
    box-shadow: 0px 0px 0px 3px var(--main-box-bg-color), 5px 5px 5px 0px #00000055;
    text-align: left;
    translate: -3px 0px;
}

.dropdown-content a {
    color: var(--font-color);
    font-size: 24px;
    display: block;
    margin: 10px;
}

body {
    background-color: var(--main-bg-color);
    margin: 0px;
    text-align: center;
    overflow-x: hidden;
    color: var(--font-color);
    background-image: url(images/blob-scatter.svg);
}

img.logo {
    border-radius: 50%;
}

.header-title {
    vertical-align: center;
    text-shadow: 2px 2px 2px #00000055;
    margin: 20px;
    color: var(--gold);
}

.GSS {
    font-size: 36px;
    color: var(--gold);
    text-shadow: 2px 2px #00000085;
}

.GSS em {
    font-size: 30px;
}

.schedule-header {
    margin-top: 50px;
    font-size: 24px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 0.5fr 2fr;
    margin-left: 8%;
    margin-right: 8%;
}

.event-time {
    background-color: var(--pink);
    margin: 20px;
    margin-right: 10px;
    border-radius: 20px;
    padding: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-description {
    background-color: var(--purple);
    margin: 20px;
    margin-left: 10px;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    font-size: 20px;
    align-items: center;
    text-align: left;
}

.event-description img {
    width: 100px;
    height: auto;
    border-radius: 5px;
    margin-right: 15px;
}

a.block {
    line-height: 0px;
}

a.performer-link {
    color: black;
}

.throughout-weekend-box {
    border-style: solid;
    border-width: 5px;
    border-color: black;
    border-radius: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

a.registration-button {
    display: inline-block;
    font-size: 24px;
    margin: 30px;
    margin-bottom: 10px;
    background-color: var(--gold);
    padding: 15px;
    border-radius: 20px;
    border-style: none;
    box-shadow: 0px 6px 0px 0px #a2762a;
    transition-duration: 0.15s;
    transition-timing-function: ease-in-out;
    color: var(--font-color);
}

a.registration-button:hover {
    scale: 1.15;
    rotate: z 2deg;
    background-color: #ffd350;
    box-shadow: 0px 6px 0px 0px #a69036;
}

a.registration-button:active {
    box-shadow: 0px 0px 0px 0px #a2762a;
    translate: 0px 6px;
}

div.sponsors-div {
    margin-top: 50px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 20px;
    padding: 15px;
}

.ty-sponsors {
    margin-top: 0px;
    font-size: 40px;
    color: var(--gold);
    text-shadow: 2px 2px #00000085;
    font-weight: 550;
}

.sponsor-level {
    font-size: 32px;
}

.sponsor-logo {
    width: auto;
    height: 130px;
    border-radius: 5px;
    border-style: none;
}

.in-kind-sponsor-logo {
    width: auto;
    height: 70px;
    border-radius: 5px;
    border-style: none;
}

.sponsor-no-img {
    font-size: 28px;
    color: var(--font-color);
    background-color: white;
    width: fit-content;
    height: fit-content;
    border-radius: 5px;
    padding: 5px;
}

.in-kind-sponsors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.wave-divider {
    aspect-ratio: 900/150;
    background: no-repeat center;
    background-size: cover;
    background-image: url(images/layered-waves-divider.svg);
}

footer {
    background-color: #EA3A3A;
    margin: 0px;
    padding: 10px;
    text-align: left;
    font-size: 24px;
    color: #e7efff;
    width: 100%;
}

a.footer-text {
    color: var(--font-color);
    margin-left: 35px;
    margin-right: 35px;
}