/* Global box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Body & main container */
body {
    margin: 0;
    width: 100%;
	background:#f8f6f2;
}

.fullpage {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;  /* centers the content */
}

.indexlinkbutton1 {
	overflow: hidden;
	border: none;
	margin-left: auto;
	margin-right: auto;
	background: #a48e80;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease-out;	
	color: #ffffff;
	border-radius: 0px;
}

@media screen and (max-device-width: 480px) and (orientation: portrait) {
.indexlinkbutton1 {
	width: 30vw;
}
}

.indexlinkbutton1:hover,
.indexlinkbutton1:focus,
.indexlinkbutton1:active {
	background: #545454;
	transition: all 0.5s ease-in;
	cursor: pointer;	
}

.indexlinkbutton2 {
	overflow: hidden;
	border: none;
	margin-left: auto;
	margin-right: auto;
	background: #000000;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease-out;
	color: #ffffff;
	border-radius: 0px;
}

@media screen and (max-device-width: 480px) and (orientation: portrait) {
.indexlinkbutton2 {
	width: 30vw;
}
}

.indexlinkbutton2:hover,
.indexlinkbutton2:focus,
.indexlinkbutton2:active {
	background: #a48e80;
	transition: all 0.5s ease-in;
	cursor: pointer;	
}