/* Default style for mobile */
.unterschrift {
    width: 90vw;
}

/* Media query for larger screens (e.g., desktop) */
@media (min-width: 768px) { /* This breakpoint (768px) is just an example; adjust it based on your needs */
    .unterschrift {
        width: 40vw;
    }
}