* {
    box-sizing: border-box;
    font-size: 24px;
    margin: auto;
    max-height: 1366px;
    max-width: 1024px;
    padding: 0;
    text-align: center;
}

body {
    border: 2px solid gray;
}

.blur {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: none;
    background-color: rgba(255,255,255,.75);
}

.hero {
    background-image: url("images/lacakwanna_rr.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 25vh;
}

h1 {
    font-size: 10vw;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: mintcream;
    text-shadow: -.75vw -.75vw 3px rgb(46, 46, 46);
}

form {
    align-items: center;
    background-color: rgba(0,0,0,.35);
    border: 1px solid #fff;
    display: flex;
    justify-content: space-evenly;
    padding: .5em;
    margin: auto;
    max-width: 50%;
}

label {
    color: mintcream;
    font-family: 'Times New Roman', Times, serif;
    font-size: 2vw;
}

select {
    background-color: mintcream;
    font-size: 1.75vw;
    padding: .28em;
}

#selection-button {
    background-color: mintcream;
    font-size: 1.75vw;
    padding: .3em;
    font-family: 'Times New Roman', Times, serif;
}

.container {
    background-image: url("images/shiplap.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 75vh;
    justify-content: space-evenly;
}

.row {
    align-items: center;
    display: flex;
    height: 50%;
    justify-content: space-evenly;
    width: 100%;
}

.modal-buttons {
    height: 70%;
    width: 35%;
    padding-bottom: 15%;
    font-size: 4.75vw;
    color: #fff;
    font-weight: bold;
    text-shadow: .4vw .4vw 3px rgb(46, 46, 46);
    border: 1px solid gray;
    box-shadow: rgb(109, 108, 108);
}

#weather {
    background-image: url("images/waterside_bench.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

#map {
    background-image: url("images/train_tracks.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

#events {
    background-image: url("images/string_of_lights.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
}

#comments {
    background-image: url("images/bike_rack.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}



/* modals */

#weather-modal, #map-modal, #events-modal, #comments-modal {
    display: none;
}

.modals {
    position: absolute;
    height: 90%;
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
}

#weather-modal {
    background-image: url("images/empire_state.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
}

#map-modal {
    background-image: url("images/fearless_girl.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

#events-modal {
    background-image: url("images/farmers_market.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

#comments-modal {
    background-image: url("images/bouy.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.close-button {
    width: 1em;
    border: none;
    float: right;
    margin: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: transparent;
    font-size: 5vw;
}

#map-modal>.close-button, #events-modal>.close-button {
    color: #fff;
}

.textbox {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 6em .25em 0;
    background-color: rgba(255,255,255,.3);
    position: absolute;
    height: 80%;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

h2, h3 {
    font-size: 4.5vw;
    padding: .5em 0;
}

h4 {
    font-size: 3.75vw;
}

.table {
    display: table;
    margin: auto;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
    text-align: left;
    padding: .5em;
    font-size: 4.5vw;
}
