
#page {
    position: relative;
    font-size: 16;
}
#header {
    background-color:white;
    color: #b7b7b7;

    padding:5px;
    height: 115px;
    font-size: 28;
    margin-left: 15px;
    margin-top: 25px;

}
body {
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;

}
/* Column container */
.row {
    display: flex;
    flex-wrap: wrap;
}
.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}
.innerbox {
    display: flex;
    font-size: 24;
     text-align: center;
    background: rgba(0, 191, 255, 0.25);
    padding: 30px;
}
.fakebox {
    display: flex;
    font-size: 24;
    justify-content: center;
    text-align: center;
    height: 20%;
}
.innerbox-background{
    opacity: 0.5;
    background: black;
    border-top: 3px solid #ccc;
    border-bottom: 3px solid #ccc;
    position: absolute;

    min-width: 100%;
    min-height: 100%;

    flex-grow: 1;

}
.innerbox-text{
    top: 4.7em;
    position: relative;
    padding: 40px;

    flex-grow: 1;

    display: inline-flex;
}
p{
    display: contents;
}