.slideshow-container {
	position: relative;
	max-width: 30vw;
	margin: 0 0 0 60px;
}

.slideshow-container img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.slideshow-container .slide {
	display: none;
}

.slideshow-container .slide.active {
	display: block;
}

.bullets {
	text-align: center;
	margin-top: 20px;
	width: 30vw;
}

.bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #bbb;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.bullet.active {
	background-color: #717171;
}

@media only screen and (max-width: 900px) {
	.slideshow-container {
		max-width: 100vw;
		margin: 20px 0 0 0px;
	}
	
	.bullets {
		width: 100%;
	}

}