.downloadables{ 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	text-align: center;
}
.dark-theme h2, .dark-theme h3{
	color: #fff;
	text-transform: none;
}
h2{
	width: 100%;
}
h3{
	font-size: 1.1rem;
	text-shadow: 0px 0px 4px #333;
}
#image-preview{
	border-radius: 12px;
}

#phone-preview{
	display: inline-block;
	position: relative;
	max-width: 420px;
	border-radius: 12px;
}

#phone-preview-glare{
    height: 100%;
    position: absolute;
    width: 100%;
}

#downloadable-settings{
	position: absolute;
	top: 100px;
	left: 50px;
}

#fake-icons{
	position: absolute;
	top: 80px;
	left: 40px;
	display: flex;
	flex-wrap: wrap;
}

#fake-icons div{
	height: 45px;
	width: 45px;
	border-radius: 20px;
	margin: 25px 10px;
	display: none;
}

#fake-icons div:nth-child(2n){
	background: #ccc;
}

#fake-icons div:nth-child(2n + 1){
	background: #aaa;
}

#downloadable-button{
	padding: 5px 20px;
	font-size: 1.1rem;
	border: none;
	border-radius: 12px;
	cursor: pointer;
}

.dark-theme #downloadable-button:hover{
	color: #fff;
}

@media only screen and (min-width: 720px){
	#phone-preview{
		border: 20px solid black;
	}

	#fake-icons div{
		display: block;
	}

	#downloadable-settings{
		top: 300px;
	}
	#phone-preview-glare{
		background-image: linear-gradient(to bottom right, rgb(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
	}
}