divbody {
    font-family: Helvetica;
}

.front_page_box {
    width: 80%;
    margin: auto;
    margin-top: 6%;
}

.program_selector {
    background-color: white;
    border: 2px solid black;
    padding: 8px 16px;
    color: black;
    font-family: sans-serif;
    font-size: 18px;
}

#divider {
    width: 50%;
    display: grid;
    grid-template-columns: 150px 170px 150px;
}

h1 {
    margin-bottom: 20px;
    font-size: 150px;
}

h2 {
	margin-top: 35px;
	margin-bottom: 0px;
}

h3 {
    font-weight: 100;
    font-size: 18px;
    margin-top: 0px;
}

a {
    text-decoration: none;
}

.program_selector:hover {
    color: white;
    background-color: black;
    text-decoration: none;
}

#wrapper {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows:  25% 25% 25% 25%;
}

.block {
    margin-bottom: 20px;
}

.modified {
    font-size: 40px;
    margin-bottom: 0px;
}

.botmarg {
    margin-bottom: 10px;
}

@media only screen and (max-width: 2100px) {
    #wrapper {
        grid-template-columns: 33.33% 33.33% 33.33%;
        grid-template-rows: 20% 20% 20% 20% 20%;
    }
}

@media only screen and (max-width: 1400px) {
    #wrapper {
        grid-template-columns: 50% 50%;
        grid-template-rows: 14.2% 14.2% 14.2% 14.2% 14.2% 14.2% 14.2% ;
    }
}

@media only screen and (max-width: 780px) {
    #wrapper {
        display: block;
    }
}