@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');

.textGroup {
    font-family: "PT Serif", serif;
    font-style: normal;
    
    background-color: rgba(0, 0, 0, 0.089);
    backdrop-filter: blur(10px);

    border-radius: 10px;
    padding: 0.5%;
    margin: 1%;
}

.title {
    font-weight: 700;
    font-size: xx-large;
}

.list {
    font-size: x-large;
}

.desc {
    margin: 1%;
    line-height: 100%;

    font-style: normal;
    font-size: larger;
    color:rgb(255, 255, 255);
    
    width: 60%;
}

@media only screen and (max-width: 600px) {
    .changelog {
        margin: 1.5%;
    } 
    
    .list {
        font-size: x-large;
    }

    .desc {
        width: 97%;
        line-height: 130%;
        font-size: medium;
    }

    li {
        width: 95%;
    }
}