@media only screen and (max-width: 600px) {
    .div-title-us-top {
        align-content: center;
        background-color: rgb(200, 0, 50);
        text-align: center;
        h1{
            color: azure;
            font-family: 'PrimaryFont';
            font-size: 16px;
            font-weight: lighter;
        }
    }
    .div-version{
        color: white;
        font-size: 10px;
        max-width: max-content;
        align-items: center;
        cursor: pointer;
    }
  }
  
@media only screen and (min-width: 601px) {
    .div-title-us-top {
        align-content: center;
        background-color: rgb(200, 0, 50);
        text-align: center;
        h1{
            color: azure;
            font-family: 'PrimaryFont';
            font-size: 30px;
            font-weight: lighter;
        }
    }
    .div-version{
        color: white;
        font-size: 14px;
        height: 100%;
        max-width: max-content;
        align-items: center;
        cursor: pointer;
    }
}

.div-h1-title{
    min-width: 90%;
}