html, body {
    height: 100%;
    overflow: hidden;
}

.wrapper {
    padding: 0;
    margin: 0;
    height: 100%;
}

.header {
    height: 12%;
    padding: 0;
    margin: 0;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    max-height: 400px;
    background-color: white;
}

.header>div.container {
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#content {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer {
    width: 100%;
    height: 35%;
    position: absolute;
    bottom: 0;
    background-image: url("../images/HomeScreenDesktopArt.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    object-position: center;
}

.location {
    color: black;
}

.location:hover {
    color: #ABC458;
    text-decoration: none;
}

#left-logo {
    height: 70%;
    width: 100%;
    background-image: url("../images/Logos/MC.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

}

#center-logo {
    height: 60%;
    width: 100%;
    background-image: url("../images/Logos/RCMC.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#right-logo {
    height: 60%;
    width: 100%;
    background-image: url("../images/Logos/ND92.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

p.title {
    color: #198471;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: bolder;
    font-family: "rb-bold";
}
.add {
    color: #198471;
    margin-bottom: 0;
    font-size: 1rem;
    /* font-weight: bolder; */
    font-family: "rb-bold";
}
.event-date {
    font-size: .9rem;
}

.event-time {
    font-size: .9rem;
}

.event-place {
    font-size: .9rem;
}

.submit-btn {
    color: white;
    border-radius: 0;
    font-weight: bolder;
    font-family: "rb-bold";
    background-color: #198471;
    border-color: #ABC458;
}
/* style="border-color: #ABC458;" */
.submit-btn:hover {
    background-color: #ABC458;
    border-color: #198471;
    color: #fff;
}


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .header {
        height: 10%;
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: center;
        max-height: 400px;
        background-color: white;
    }

    .header>div.container {
        height: 85%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #content {
        height: 65%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }

    .footer {
        width: 100%;
        height: 25%;
    }

    #left-logo {
        background-size: auto 100%;
    }

    #right-logo {
        background-size: 100% 100%;
    }

    p.title {
        color: #198471;
        margin-bottom: 0;
        font-size: 1.2rem;
        font-weight: bolder;
        font-family: "rb-bold";
    }
    .add {
        color: #198471;
        margin-bottom: 0;
        font-size: .8rem;
        /* font-weight: bolder; */
        font-family: "rb-bold";
    }

    .event-date {
        font-size: .8rem;
    }

    .event-time {
        font-size: .8rem;
    }

    .event-place {
        font-size: .8rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .header {
        height: 10%;
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: center;
        max-height: 400px;
        border-bottom: 1px solid grey;
        background-color: white;
    }

    .header>div.container {
        height: 85%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #content {
        height: 65%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }

    .footer {}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    #left-logo {
        background-size: auto 100%;
    }

    #right-logo {
        background-size: 100% 100%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    #left-logo {
        background-size: auto 100%;
    }

    #right-logo {
        background-size: auto 100%;
    }
}
