.landing {
    width: 100%;
    min-height: calc(100vh - 100px);
    height: auto;
    margin-top: 100px;
    overflow-y: auto;
}

.landing .background {
    background-color: white;
    color: black;

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

    margin: 25px auto 0px auto;

    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.landing .background .title {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.landing .background .title .titletext {
    white-space: nowrap;
    font-size: 60px;
    padding: 50px;
}

.landing .background .title .line {
    width: 100%;
    height: 5px;
    background-color: #E0858B99;
}

.landing .background .content {
    padding: 0px 50px 50px 50px;
}