@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Work+Sans:ital,wght@1,800&display=swap');
body {
    background-color: #19181A;
}

#container {
    width: 70%;
    margin: auto;
    padding-top: 40px;
}

#topBanner {
    height: 120px;
    background-color: #8A2BE2;
    color: #FFF;
    font-family: 'Kaushan Script', cursive;
    font-size: 20px;
}

#topleft {
    float: left;
    padding-left: 10px;
}

#topright {
    float: right;
    padding-right: 10px;
}

h1 {
    text-shadow: 2px 2px #000;
}

.lightPurpleLn {
    height: 2px;
    border-width: 0;
    background-color: #D781F7;
}

#subtitle {
    color: grey;
    font-size: 24px;
    margin: -40px 0px 0px 30px;
}

.clear {
    clear: both;
}

/* For Mobile */

@media screen and (max-width: 540px) {
    #container {
        width: 90%;
        padding-top: 5px;
    }
    h1 {
        font-size: medium;
    }
    #topBanner {
        height: 60px;
    }
    #topright a {
        color: #FFF;
        text-decoration: none;
    }
    #subtitle {
        color: grey;
        font-size: 10px;
        margin: -18px 0px 0px 5px;
    }
}

@media only screen and (device-width: 768px) {
    /* For general iPad layouts */
    #container {
        width: 90%;
        padding-top: 5px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
    /* For portrait layouts only */
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
    /* For landscape layouts only */
}

body,
html {
    height: 100%;
}

.parallax {
    /* The image used */
    background-image: url("../images/bg1.jpg");
    /* Full height */
    height: 100%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*#container{ width:80%; margin:auto;}*/

.mm_name,
.announcement,
#content_foot {
    color: #FFF;
    font-size: 2vw;
    margin-top: -5px;
    text-align: center;
}

.announcement,
#content_foot {
    font-size: 1vw;
    background-image: url("bottom.jpg");
    padding-top: 15px;
    margin-bottom: 10px;
}

#topBanner a,
#topleft a {
    text-decoration: none;
    color: #FFF;
}

@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */
    /*#rightCol{ color:#000;}*/
    #topleft a {
        color: #FFF;
        text-decoration: none;
    }
}

/*
#container{margin:auto; width:1024px;}
.content{margin-top:50px; padding:0px 10px 20px 10px;}
.clear{clear:both;}
.error{color:#F00;}
.blink_me {animation: blinker 1s linear infinite;} @keyframes blinker { 50% { opacity: 0.0; } }
.image img{ height: 280px; width: 100%;  object-fit: cover; // here }