.use-container{
    width: 100%;
    padding: 50px 0 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(230, 230, 230);;
}

.how-to-use-paragraph{
    position: relative;
    width:50%;
      /* defined in styles.css */
    background-color: var(--paragraphBackgroundColor);
    border-radius: 5px;
    padding:20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 1.75em;
    color: #155064
   
}

.use-site-title {
    position: absolute;
      /* defined in styles.css */
      background-color: var(--paragraphBackgroundColor);
    top:-15px;
    right: 5%;
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 23px;
    font-weight: bold;
    color: var( --paragraphTitleColor);
}

@media (max-width: 500px) {
    .how-to-use-paragraph{
        width: 80%;
    }
}