@import url('https://fonts.googleapis.com/css2?family=Shrikhand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body {
    background-color: rgb(2, 127, 158);
    margin: 0;
}



h1 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: italic;
    font-size: 9em;
    color: #EBE7D9;
    text-shadow: 5px 5px 3px black;
    /*text-shadow: 5px 5px 10px rgb(255, 94, 0);*/
    text-align: center;
    margin: 40px;
    margin-top: 80px;
    padding-bottom: 0;
}

.p-sub-title {
    margin-top: 0;
    text-align: center;
}

#slideShow {
    background-color: black;
    max-width: 1200px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 30px auto;
    border: 5px solid teal;
    border-radius: 90px;
    box-shadow: 0 6px 20px 0 rgba(255, 255, 255, 0.2), 0 8px 20px 0 rgba(255, 255, 255, 0.2);
}

.imageContainer img {
    width: 100%;
    height: auto;
}

.imageContainer {
    animation-name: fade;
    animation-duration: 4s;
}

#img-loop {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

#social-media-section {
    background-color: rgb(61, 61, 61);
    padding-top: 20px;
}

#social-media-section h2{
    text-align: center;
    font-size: 3em;
    color: white;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    text-shadow: 0px 0px 5px red;
}

#logo-container {
    display: flex;
    justify-content: center;
}

.logo-div {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 20px 80px;
}

.logo-anchor {
    text-decoration: none;
    font-size: 20px;
}

.logo {
    width: 20vw;
    height: auto;
}

.caption {
    color: white;
}

.caption:hover {
    text-decoration: underline;
}

.caption:active {
    color: grey;
}

#video-section {
    text-align: center;
    background-color: rgb(61, 61, 61);
    padding: 1px;
}

#video-section h2 {
    margin: 50px;
    font-size: 3em;
    color: white;
    font-family: "Shrikhand", serif;
    font-weight: 400;
    text-shadow: 0px 0px 5px red;
}

#video-container {
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-around;
}

#calendar-section h2{
    margin: 80px;
    font-size: 3em;
    color: rgb(248, 246, 246);
    font-family: "Shrikhand", serif;
    font-weight: 400;
    text-shadow: 0px 0px 8px black;
}

#calendar-title {
    text-align: center;
}

#calendar-div {
    display: flex;
}

#calendar {
    margin: 0 auto 30px auto;
}

.caption {
    display: block;
}

#contact-section {
    background-color: black;
    color: white;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}

.contact-div {
    display: inline-flex;
    flex-direction: column;
}

.contact-btn {
    text-decoration: none;
    background-color: white;
    padding: 10px;
    font-size: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-ul {
    padding: 0;
}

@keyframes fade {
    0% {opacity: 0.0;}
    30% {opacity: 1;}
    90% {opacity: 1;}
    100% {opacity: 0.1;}
}

@media only screen and (max-width: 800px) {
    #top {
        margin-top: 120px;
    }

    h1 {
        font-size: 50px;
    }

    #slideShow {
        margin: 100px auto 150px auto;
    }

    #social-media-section {
        margin-top: 120px;
    }

    #social-media-section h2 {
        font-size: 2em;
    }

    #logo-container {
        flex-direction: column;
    }

    .logo {
        width: 40vw;
    }

    #video-container {
        flex-direction: column;
    }

    #video-section h2 {
        font-size: 2em;
    }

    #calendar-section h2 {
        font-size: 2em;
    }
}