
.headline {
    color: lightgray!important;
    text-align: center;
    font-size: 40px;
    text-decoration: underline;
    text-decoration-color: lightgray
}

.text {
    float: left;
    width: 90%;
    margin-left: 5%;
    font-size: 16px;
    color: white;
    background-color: #eb9847;
    border-radius: 15px;
    padding: 2%;
}

@media only screen and (min-width: 600px) {
    .headline {
        font-size: 80px;
    }

    .text {
        font-size: 22px;
        font-weight: 700;
        width: 80%;
        margin-left: 10%;
        padding: 1%;
    }
}

@media only screen and (min-width: 1200px) {
    .text {
        width: 40%;
        margin-left: 5%;
    }
}