html, 
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: black;
    color: white;
}

img {
    width: 200px;

     -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
    pointer-events: none;

     -webkit-user-drag: none;
      -khtml-user-drag: none;
      -moz-user-drag: none;
      -o-user-drag: none;
      user-drag: none;
}

a {
    text-decoration: none;
    color:  white;
}

header {
    width: 100%;
}
header .group {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-weight: bold;
    font-size: 2em;
}

h1 {
    color: white;
    margin-top: 0;
}

p {
    
}


footer {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 60px 0px;
    flex-direction: column;

}

footer .wrap {
    padding: 0px 40px;
}

footer a {
    color: #d10000;
}

#events {

}

.event-grid {
    display: flex;
    flex: 1 0 21%;
    box-sizing: border-box;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.event-item {

}

.event-item.disabled {
    filter: brightness(0.5);
}

.event-item-content {
    /* width: 750px;
    height: 1050px; */
    max-width: 375px;
    margin: 20px;
    aspect-ratio: 750 / 1050;

    background-position: center;
    background-size: contain;

    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.event-title {
    margin: 20px 40px;
    text-align: center;
    font-size: 2em;
    text-shadow: 4px 4px 4px black;
}

.event-desc {
    text-align: center;
    margin: 20px 10px;
    text-shadow: 3px 3px 4px black;
}

/* ===== Scrollbar CSS ===== */
body {
  --sb-track-color: #232E33;
  --sb-thumb-color: #ff0000;
  --sb-size: 8px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}

@supports not selector(::-webkit-scrollbar) {
  body {
      scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

@media only screen and (max-width: 1000px) {
    img {
        width: 200px;
    }

    header .group {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    header .group .nav-apps {
        display: none;
    }

    h1 {
        font-size: 3em !important;
    }

    .left {
        padding: 0 20px !important;
    }

    html {
        overflow-x: hidden;
    }
}



section h2 {
    padding: 2rem;
    font-size: 2.5rem;
}

section {
    text-align: center;
}

.highlighted-text {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    margin-bottom: 1rem;
    text-align: center;
}

.highlighted-text::before {
    content: open-quote;
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -1rem;
    color: rgba(255, 255, 255, 0.1);
}

.highlighted-text::after {
    content: close-quote;
    font-size: 4rem;
    position: absolute;
    right: -1.5rem;
    bottom: -1rem;
    color: rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 600px) {
    img {
        width: 200px;
    }

    footer {
        align-items: unset;
    }

    footer h1 {
        text-align: center;
    }
}

@media only screen and (max-width: 1000px) {
  
}


input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
}
@media only screen and (max-width: 767px) {
  input {
    font-size: 15px;
    padding: 1.15em;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: #f2f2f2;
}
@media all {
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1c1c1c inset !important;
    -webkit-text-fill-color: #eee;
    background-color: #1c1c1c;
    color: #eee;
  }
}
input:-moz-autofill,
input:-moz-autofill:hover,
input:-moz-autofill:focus,
input:-moz-autofill:active,
input:-ms-autofill,
input:-ms-autofill:hover,
input:-ms-autofill:focus,
input:-ms-autofill:active,
input:-o-autofill,
input:-o-autofill:hover,
input:-o-autofill:focus,
input:-o-autofill:active {
  background-color: #f2f2f2;
}
@media all {
  input:-moz-autofill,
  input:-moz-autofill:hover,
  input:-moz-autofill:focus,
  input:-moz-autofill:active,
  input:-ms-autofill,
  input:-ms-autofill:hover,
  input:-ms-autofill:focus,
  input:-ms-autofill:active,
  input:-o-autofill,
  input:-o-autofill:hover,
  input:-o-autofill:focus,
  input:-o-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1c1c1c inset;
    -moz-box-shadow: 0 0 0 1000px #1c1c1c inset;
    box-shadow: 0 0 0 1000px #1c1c1c inset;
    background-color: #1c1c1c;
    color: #eee;
  }
}
@media all {
  input,
  select,
  textarea {
    background: #1c1c1c;
    color: #eee;
  }
  input::placeholder,
  select::placeholder,
  textarea::placeholder {
    color: #aaa;
  }
}