@media screen and (min-width:320px) {
    .originalStyle {
        font-size: 1.1rem;
        border-bottom: 4px dotted #ffc600;
        font-weight: 700;
        line-height: 1.5;
         }
    }
@media screen and (min-width:480px) {
    .originalStyle {
        font-size: 1.1rem;
        border-bottom: 4px dotted #ffc600;
        font-weight: 700;
        line-height: 1.5;
        }
    }
@media screen and (min-width:768px) and (max-width:1024px) {
    .originalStyle {
        font-size: 1.6rem;
        border-bottom: 4px dotted #ffc600;
        font-weight: 700;
        line-height: 1.5;
        }
    }

@media screen and (min-width:1024px) {
    .originalStyle {
        font-size: 1.7rem;
        border-bottom: 4px dotted #ffc600;
        font-weight: 700;
        line-height: 1.5;
        }
    }

@media screen and (min-width:320px) {
    .originalStyle2 {
        font-size: 1.2rem;
		margin-left: 3rem;
        }
    }

 @media screen and (min-width:768px) {
    .originalStyle2 {
        font-size: 1.2rem;
		line-height: 5rem;
		margin: -40px 0 -10px 3rem;
        }
    }