body {
    margin: 0;
    font-family: 'Segoe UI';
    background-color: #548999;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.banner-container {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 3px 2px 8px -1px rgba(0,0,0,0.45);
}

.home-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e6eff6;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 3px 2px 8px -1px rgba(0,0,0,0.45);
    margin: 1rem;
}

.home-modal h1 {
    font-weight: 400;
    font-size: x-large;
    text-align: center;
}

.home-modal a, .home-input-container #home-submit {
    background-color: #89b4c4;
    text-decoration: none;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    transition: background-color ease-in-out 200ms;
}

.home-modal a:hover, .home-input-container #home-submit:hover {
    cursor: pointer;
    background-color: #9ecedf;
}

.separator-container {
    display: flex;
    align-items: center;
}

.separator-container h2 {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-bottom: 6px;
    font-weight: 500;
}

.home-modal-separator {
    content: "";
    border-top: 1px solid black;
    height: 1px;
    width: 15rem;
    display: flex;

}

.home-modal form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-modal form label {
    font-size: larger;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
}

.home-input-container {
    margin-bottom: 1rem;
    display: flex;
}

.home-input-container #home-input {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    width: 20rem;
    margin-right: .5rem;
}

/* Responsive Design */
@media only screen and (max-width: 584px) {
    .home-modal-separator {
        width: 10rem;
    }
}

@media only screen and (max-width: 494px) {
    .home-input-container #home-input {
        width: inherit;
    }
}

@media only screen and (max-width: 494px) {
    .home-modal-separator {
        width: 5rem;
    }
}
/* End of Responsive Design */
