/* GLOBALS */

:root {
    /* define variables */
    --main-white-color: #fff;
    --main-black-color: #333;
    --main-accent-color-1: #0000ff;
    --main-accent-color-2: #0000ff;
}

body {
    color: var(--main-accent-color-2);
    font-family: "Libre Caslon Text", serif;
    font-variant-ligatures: none;
    font-size: 12px;
    font-weight: 200;
    line-height: 1.5;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.3s ease;
    transition: background-color 20s ease;
    /* make it gradient from black from bottom */
    background: linear-gradient(to bottom, var(--main-accent-color-1), var(--main-white-color));
    word-break: break-all;
}

/* make bigger margins for computers */

@media screen and (min-width: 920px) {
    #allEvents {
        display: flex;
        flex-direction: row;
        padding: 10px;
        flex-wrap: wrap;
    }

    .eventsList {
        flex-grow: 1;
        flex-basis: 25%;
        margin: 10px;
    }

    #mainTitle {
        font-size: 52px !important;
    }
}

#content {
    margin: 0 auto;
    padding: 0 20px;
}

::selection {
    color: var(--main-white-color);
    background-color: var(--main-accent-color-2);
}

.hidden {
    display: none;
}

/* TYPOGRAPHY */

h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
    font-family: sans-serif;
    font-weight: bold;
}

h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: sans-serif;
    font-weight: bold;
}

.divider {
    flex-grow: 1;
    border-bottom: 2px solid var(--main-accent-color-2);
    margin: 11px;
    align-self: center;
    opacity: 50%;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
    word-break: break-word;
}

a {
    color: var(--main-accent-color-2);
    text-decoration-style: dotted;
}

a:hover {
    color: var(--main-black-color-1);
    text-decoration-style: wavy;
}

div > h1 {
    font-size: 48px;
    font-style: italic;
    font-weight: 200;
    margin-top: -72px;
    /* make it outline */
    -webkit-text-stroke: 1px var(--main-accent-color-2);
    color: var(--main-white-color);
    font-family: "Castoro", serif;
    word-break: break-word;
}

div > h1:hover {
    font-style: normal;
}

#mainTitle {
    width: 100%;
    overflow: hidden;
    word-break: break-all;
    margin: 0 0 42px 0;
    position: sticky;
    top: 0;
    z-index: 1;
    filter: drop-shadow(0 10px 10px var(--main-accent-color-1));
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-around;
    font-size: 32px;

    font-weight: 200;
    color: var(--main-white-color);
    font-family: "Castoro", serif;

    /* apple */
    position: -webkit-sticky;
    -webkit-backdrop-filter: blur(8px);
    -webkit-text-stroke: 1px var(--main-accent-color-2);
}

#mainTitle span {
    display: inline-block;
}

#mainTitle span:hover {
    font-style: italic;
}

#mainTitle span:nth-child(1) {
    animation: slide 4s linear infinite;
    animation-delay: 0s;
}

#mainTitle span:nth-child(2) {
    animation: slide 4s linear infinite;
    animation-delay: 1s;
}

#mainTitle span:nth-child(3) {
    animation: slide 4s linear infinite;
    animation-delay: 2s;
}

#mainTitle span:nth-child(4) {
    animation: slide 4s linear infinite;
    animation-delay: 3s;
}

@keyframes slide {
    0% {
        font-style: italic;
    }
    25% {
    }
    50% {
    }
    75% {
    }
  }

/* CONTENT */

.eventsList {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    background: #ffffffdd;
    border-radius: 20px;
    padding: 36px;
}

.eventsList:hover {
    background: var(--main-white-color);
}

.eventsList img {
    padding: 0;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.eventsList iframe {
    padding: 0;
    height: 100%;
    border-radius: 20px;
}

.eventsList blockquote {
    padding: 0;
    height: 100%;
    border-radius: 20px;
}

.eventsList img:hover {
    filter: grayscale(100%);
}

.picOnly {
    
}

hr {
    border: 0;
    margin: 60px 0 0 0;
    /* border-bottom: 2px dotted var(--main-accent-color-1); */
}

#contactUs {
    margin-top: 50px;
    font-size: 32px;
    text-decoration: none;
    text-align: center;

    /* font-style: italic; */
    font-weight: 400;
    /* make it outline */
    font-family: "Castoro", serif;
    word-break: break-word;
}

#logo {
    background: none;
    padding-bottom: 50px;
}

.imgLink {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* text-decoration: none; */
}

.imgLink > h1 {
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    color: #00f;
    font-family: "Castoro", serif;
    word-break: break-word;
    /* background-color: var(--main-accent-color-1); */
}

#logo img {
    width: 75%;
    filter: drop-shadow(2px 2px 2px var(--main-accent-color-1));
}

#footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    font-style: italic;
}

/* settings footer */

button {
    background-color: var(--main-accent-color-2);    
    border: none;
    border-radius: 5px;
    color: var(--main-white-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0 0;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

button:hover {
    color: var(--main-accent-color-2);
    background-color: #eaeaeadd;
}

label {
    font-weight: 700;
    font-family: sans-serif;
    font-style: normal;
}

input[type="text"], input[type="time"], input[type="date"] {
    margin: 0 0 20px 0;
    flex-basis: 25%;
    color: var(--main-accent-color-1);
    border: 1px solid var(--main-accent-color-1);
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.codeOutput {
    border-radius: 25px;
    font-family: consolas;
    background: var(--main-white-color);
    transition: all 0.3s ease;
}

#editorForm {
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
    border-radius: 25px;
    font-family: consolas;
    font-style: normal;
    transition: all 0.3s ease;
}

#editorForm > details > span {
    display: flex;
    flex-direction: column;
    font-family: consolas;
    font-style: normal;
    transition: all 0.3s ease;
}

#editorForm > button {
    margin: 20px 0 20px 0;
    flex-basis: 25%;
}

/* junk */
