.newC{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    border: 2px solid white;
    min-width: 55vw;
    max-width: auto;
    border-radius: 10px;
}


.comments{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px;
    gap: 10px;

}

.comment{
    display: flex;
    align-items: center;
    justify-content: space-between ;
    gap: 10px;
    text-align: center;
    font-size: 20px;
    flex-direction: column;
    
    
}


.comText{
    text-align: center;
    font-size: 20px;
    min-width: 50vw;
    max-width: auto;
    background-color: white;
}

p{
    background-color: black;
    color: white;
    min-width: 20vw;
    max-width: auto;
    text-align: center;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 20px;
    min-height: 3vh;
    max-height: auto;
    font-weight: 700;
}

button{
    width: 10vw;
    font-size: 20px;
    font-weight: 700;
}

@media( max-width:600px){

.comment{
    flex-direction: column;
    font-size: 30px;
    font-weight: 700;
    
}

.comText{
    width: 85vw;
    
}

p{
    width: 85vw;
    max-height: auto;
    max-width: auto;
    font-weight: 700;
}

button{
    width: 20vw;
    font-size: 18px;
    font-weight: 700;
}

}