body,
html {
    height: 100%;
    margin: 0;
    font-family: arial;
    color: #2c5a93;
}

.bg {
    /* The image used */
    background-image: url("image.jpg");

    /* Full height */
    height: 50%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 15px solid #2c5a93;
    border-top: 15px solid #099dda;
    margin-bottom: 30px;
}

a:hover {
    color: #066891;
    text-decoration: underline;
    cursor: pointer;
}

a {
    color: #099dda;
}

h1 {
    font-weight: normal;
    color: #066891;
    font-size: 1.4em;
    text-align: center;
}

button {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #3e9ac5;
    border: 1px solid #3e9ac5;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

button:hover {
    background-color: #3384aa;
    border-color: #307ca0;
    color: #fff;
    cursor: pointer !important;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    font-weight: 400;
    text-align: center;

}

.frame {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-container {
    display: flex;
    justify-content: space-around;
}

.content {
    display: block;
    max-width: 50em;
}