html,
body {
    height: 100%;
    margin: 0;
    min-width: 1200px; /* min width before horizontal scrolling starts */
}

header {
    background-color: blanchedalmond;
    height: 120px;
    display: flex;
    align-items: center;
    font-size: 18px;
    overflow: hidden;
}

header a {
    padding-left: 20px;
    padding-right: 20px;
    color: black;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
}

header a img {
    height: 100%;
}

.main_options {
    height: 950px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    align-items: left;
    justify-content: center;
}

.main_options img {
    width: 100%;
    object-fit: cover;
    min-height: 950px;
    min-width: 950x;
    position: absolute;
    z-index: 0;
}

.main_options h1 {
    margin: 0;
    position: relative;
    font-family: 'Lucida Sans', 'Lucida Grande', sans-serif;
    font-size: 60px;
    color: blanchedalmond;
    left: 180px;
    z-index: 2;
}

.main_options button {
    width: 120px;
    height: 40px;
    margin-top: 60px;
    left: 200px;
    background-color: blanchedalmond;
    font-size: 16px;
    border-color: white;
    border-width: 3px;
    border-radius: 8px;
    font-family: 'Lucida Sans', 'Lucida Grande', sans-serif;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.main_options ul {
    margin: 0;
    z-index: 3;
    position: relative;
    font-family: 'Lucida Sans', 'Lucida Grande', sans-serif;
    font-size: 20px;
    color: blanchedalmond;
    left: 170px;
    z-index: 2;
}

.main_options li {
    margin-top: 10px;
}

.main_options::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(1, 70, 110, 1),
            rgba(1, 70, 110, 0.8),
            rgba(1, 70, 110, 0.1),
            transparent);
    z-index: 1;
}

.showcase {
    height: 800px;
    overflow-x: auto;
    user-select: none;
    background-color: blanchedalmond;
    display: flex;
    z-index: 0;
}

.showcase .showcase__buttons {
    width: 25%;
    min-width: 300px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 30px;
    margin-right: 0px;
    background-color: rgb(1, 70, 110);
    display: flex;
    flex-direction: column;
}

.showcase .showcase__buttons .showcase__button {
    cursor: pointer;
    flex: 1; /* this makes the buttons take up equal space */
    margin: 35px;
    border-width: 3px;
    border-color: white;
    background-color: rgb(255, 199, 114);
    color: rgb(1, 70, 110);
    font-family: 'Lucida Sans', 'Lucida Grande', sans-serif;
    font-size: 25px;
}

.showcase .showcase__images {
    width: 50%;
    margin: 30px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: white;
}

.showcase .showcase__text {
    background-color: rgb(1, 70, 110);
    width: 25%;
    margin: 30px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.showcase .showcase__text h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    font-size: 45px;
    color: rgb(255, 199, 114);
    font-family: 'Lucida Sans', 'Lucida Grande', sans-serif;
}

.showcase .showcase__text h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    padding-top: 0px;
    color: rgb(255, 199, 114);
    font-family: 'Lucida Sans', 'Lucida Grande', sans-serif;
}

.showcase .showcase__images {
    position: relative;
}

.showcase .showcase__images img {
    width: 100%;
    height: 100%;
    position: absolute;
}

/* visible and hidden are for the showcase images */
.visible {
    opacity: 1;
    transition: opacity 0.5s linear 0.25s;
}

.hidden {
    opacity: 0;
    transition: opacity 0.5s linear 0s;
}

.footer {
    display: flex;
    background-color: rgb(0, 40, 69);
    height: 250px;
    padding-left: 12.5%;
    padding-right: 12.5%;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer section {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 25%;
    align-items: center;
}

.footer p {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
    text-decoration: underline;
}

.divider {
    background-color: white;
    width: 1px;
}

.logos {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer .footer__media img {
    width: 50px;
    margin: 15px;
    fill: blue;
}

.footer h1 {
    color: white;
    font-size: 20px;
}

/* styles past here are for form.html */

.form-body {
    min-height: 1000px;
    background: linear-gradient(180deg,
            rgba(1, 70, 110, 1),
            rgba(1, 70, 110, 0.8),
            rgba(1, 70, 110, 0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form {
    width: 45%;
    user-select: none;
    min-height: 400px;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(30px, auto);
    column-gap: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    grid-column: span 2;
}

#form-header {
    color: rgb(255, 255, 255);
    margin-top: 40px;
    font-size: 70px;
    text-align: center;
}

.form-category {
    grid-column: span 2;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.form-category-info {
    font-family: 'Lucida Sans';
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.input {
    border-radius: 6px;
    height: 30px;
    font-size: 16px;
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.input-large {
    grid-column: span 2;
}

.input-small {
    grid-column: span 1;
}

textarea {
    height: 60px;
    font-size: 20px;
    border-radius: 6px;
    font-family: 'Lucida Sans';
    resize: vertical;
    max-height: 300px;
    padding: 20px;
}

.checkbox-group {
    display: flex;
    grid-column: span 2;
}

.checkbox {
    appearance: none;
    border: 2px solid rgb(177, 177, 177);
    border-radius: 5px;
    width: 20px;
    height: 20px;
}

.checkbox-label {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.checkbox:hover {
    border-color: black;
}

.checkbox:checked {
    background-color: black;
    border-color: black;
}

#new-date-time-button {
    height: 30px;
    width: 30px;
    border-width: 2px;
    font-size: 20px;
}

#new-date-time-button:hover {
    background-color: darkgray;
}

#submit-form-button {
    grid-column: span 2;
    margin-top: 50px;
    height: 40px;
    width: 120px;
    border-width: 3px;
    background-color: rgb(188, 220, 230);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
}

#submit-form-button:hover {
    background-color: rgb(132, 173, 187);
}