#backgroundwrapper {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: calc(50% + 30px);
    overflow: hidden;
    z-index: -1;
    border-radius: 0px 0px 30px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#topicwrapper {
    position: absolute;
    width: calc(100% - 20px);
    vertical-align: middle;
    text-align: center;
    text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    letter-spacing: 2px;
}
#topic {
    font-size: 75px;
    color: rgb(200, 200, 200);
    font-family: Nunito;
    font-weight: bolder;
    margin: 0px;
    letter-spacing: 2px;
}
#line {
    position: absolute;
    top: 95px;
    left: 30%;
    height: 10px;
    width: 40%;
    border: 1px;
    border-style: solid;
    border-color: #ffffff #000 #000 #ffffff;
    background-color:  rgb(200, 200, 200);
}
#content {
    position: absolute;
    left: 0px;
    top: calc(50% + 30px);
    width: 100%;
    font-size: 20px;
    font-family: Nunito;
    font-weight: bold;
    margin-top: 25px;
}
.contentbig {
    height: auto;
    min-height: calc(50% - 85px);
}