* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

h1 {
font-size: 50px;
font-family: Angkor;
color: #cf9e73;
}

.topimage {
padding: 0px;
border-style: solid;
border-width: 2px;
border-color: #758e58;
border-radius: 100%;
background: #2c5942;
}

.topimagepad {
padding: 20px;
}

.topback {
border-style: solid none solid none;
border-width: 2px;
border-color: #758e58;
float: center;
width: 520px;
}

.spacer {
height: 10px;
}

.topspacer {
height: 5vh;
}

.vbutton {
border-style: solid;
border-width: 2px;
border-color: #758e58;
border-radius: 20px;
background: #abcd77;
margin: 25px 0px;
}

.vbutton:hover {
background: #758e58;
}

.maintext {
font-size: 24px;
font-family: Angkor;
color: #cf9e73;
padding: 20px;
}

.link {
text-decoration:none;
font-weight: bold;
color: #cf9e73;
}

.centerfloat {
float: center;
width: 500px;
}

.texticonpad {
padding-right: 10px;
}

.credits {
width: 250px;
border-style: solid none none none;
border-width: 2px;
border-color: #adadad;
font-size: 16px;
color: #adadad;
margin: 30px;
padding: 10px;
}


.creditline {
border-style: solid none none none;
border-width: 2px;
border-color: #758e58;
float:center;
width: 350px;
padding: 20px;
}

.credittext {
font-size: 12px;
font-family: Helvetica;
color: #cf9e73;
}


/* Use a media query to add a break point at 992px: */
@media screen and (max-width: 992px) {
	.centerfloat, .topback, .creditline {
	width: 80%; /* The width is 80%, when the viewport is 992px or smaller */
	}
	
	.topback, .creditline {
	width: 100%;
	}
}


/* Use a media query to add a break point at 768px: */
@media screen and (max-width: 768px) {
	.centerfloat, .topback, .creditline {
	width: 100%; /* The width is 100%, when the viewport is 768px or smaller */
	}

	.topspacer {
	height: 5px;
	}
  
	h1 {
	font-size: 40px;
	}
	
	.vbutton {
	margin: 25px 10px;
	}
}

