.content p{
    line-height: 50px;
    font-size: 30px;
    opacity: 70%;
    color: #000;
    margin: 10px 0;
}

.content p a{
    color: #000;
}

.content h1{
    font-size: 55px;
}
.content h2{
    font-size: 35px;
    margin-bottom: 0;
}

.info-graphic{
justify-content: space-around;
}

.content h1 span{
    color: #B16767;
}

strong{
    font-weight: 600;
}

.content ul li,
.content ol li{
    font-size: 25px;
    opacity: 70%;
}

table{
    border-collapse: collapse;
    font-size: 30px;
}

th{
    text-align: left;
    padding: 10px 10px 30px 10px;
    border-bottom: 1px solid #000;
    font-weight: 200;

}

th:nth-child(1){
    border-right: 1px solid #000;

}

td{
    opacity: 70%;

}

td:nth-child(1) {
    border-right: 1px solid #000;
    padding: 10px;
}

td:nth-child(2){
    padding-left: 10px;
}

tr:nth-child(2) td{
    padding-top: 30px;
}

#tbc{
    text-align: center;
}

form{
display: flex;
justify-content: center;
    align-items: center;
}

button{
    width: 300px;
    height: 70px;
    font-size: 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: .9s;
}

button:hover{
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.one{
    display: inline;
    float: right;
}

@media screen and (max-width: 768px){
    .content h1{
        font-size: 30px;
    }

    .content h2{
        font-size: 25px;
        margin-bottom: 0;
    }

    .content p{
        line-height: 30px;
        font-size: 15px;
    }

    .content ul li,
    .content ol li{
        font-size: 15px;
    }

    table{
        font-size: 15px;
    }
}