.holiday_text_box {
    background-color: var(--blue0);
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;  /* horizontal centering */
    align-items: center;      /* vertical centering */
    padding: 8vh;             /* prevents margin collapse */
}


.holiday_text {
    color: var(--base);
    text-align: justify;
    width: 70%;
    margin: 0;
}


.schools{
    background-color: var(--base);
    color: var(--blue0);
    position: relative;
    height: auto;
    width: 100%;
}

.schools_header_box{
    background-color: var(--base);
    position:relative;
    height: 100px;
    width: 100%;
}

.schools_header{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);

}

.schools_list{
    position: relative;
    height: auto;
    width: 100%;
}

.schools_list_half{
    position: absolute;
    width: 50%;
    height: 100%;
}


.schools_list_box{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 8vh;
}

@media (min-width: 1024px){
    .holiday_text{
        font-size: 1.5vw;
    }

    .schools_header{
        font-size: 3vw;
    }

    .town_name{
        font-size: 2vw;
    }

    .holiday_school{
        font-size: 1.5vw;
    }
}
