* {
    font-family: 'Open Sans', sans-serif;
}
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}
#top {
    height: 35%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
#bottom {
    height: 50%;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}
        /* Set the Open Sans font for the text in the bottom half */
#bottom .info {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
/* Set the text width to 100% on mobile devices and 50% on desktops and tablets */
@media only screen and (min-width: 768px) {
    #bottom .info {
        width: 50%;
    }
}
@media only screen and (max-width: 767px) {
    #bottom .info {
        width: 100%;
    }
}
.logo {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
}