How can I adjust the slideshow size on Studio theme desktop version?

.slideshow {
width: 30%;
 margin: 0 auto;

}

@media screen and (max-width: 769px) {
.slideshow {
width: 100%;
}
}

I was able to solve it with this code. Thank you.