/****************HEADER DESIGN*******************/

.page-title-div {
    background-image: url(../img/information1.jpg);
    height: 200px;
    background-size: cover;
}

.page-title-div-background {
    background-color: rgba(213, 209, 209, 0.9);
    height: 100%;
    width: 100%;
    text-align: center;
    padding-top: 50px;
}

.header-unique-word {
    color: rgb(42, 112, 225);
    font-weight: 800;
}

.page-title-div-background h1 {
    font-size: 60px;
    color: white;
    font-weight: 400;
}

@media (min-width: 200px) and (max-width: 1000px) {
    .page-title-div-background h1 {
        font-size: 40px;
        color: white;
        font-weight: 400;
    }
}


/****************HEADER DESIGN*******************/


/****************ALL EVENTS DISPLAY*******************/

@media (min-width: 900px) {
    .all-events-div {
        padding-left: 15%;
        padding-right: 15%;
        background-color: rgb(241, 241, 241);
        height: 100%;
        padding-top: 5%;
        padding-bottom: 10%;
    }
    .event-row {
        display: grid;
        grid-template-columns: 20% 40% 40%;
        border: solid transparent 1px;
        border-top-color: lightgray;
        border-bottom-color: lightgray;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .event-row .month,
    .date {
        font-weight: bold;
    }
    .event-row h2 {
        font-weight: bold;
    }
    .event-img {
        width: 400px;
        height: 300px;
        background-size: cover;
    }
}

@media (min-width: 200px) and (max-width: 1000px) {
    .all-events-div {
        padding-left: 5%;
        padding-right: 5%;
        background-color: rgb(241, 241, 241);
        height: 100%;
        padding-top: 5%;
        padding-bottom: 10%;
    }
    .event-row {
        display: grid;
        border: solid transparent 1px;
        border-top-color: lightgray;
        border-bottom-color: lightgray;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .description-div p {
        font-size: 15px;
    }
    .event-row .month,
    .date {
        font-weight: bold;
        font-size: 15px;
    }
    .event-row h2 {
        font-weight: bold;
    }
    .event-img {
        width: 300px;
        height: 150px;
        background-size: cover;
        margin-bottom: 10px;
    }
}

.descriptions-div {
    padding-top: 5%;
    padding-left: 2%;
    padding-bottom: 5%;
}

.description-div-row {
    margin-bottom: 5%;
}

.description-div-row .description-tab-title h3 {
    font-weight: bold;
    color: rgb(42, 112, 225);
}