* {
    box-sizing: border-box;
}
html {
    font-size: 1vw;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    top: 0;
    text-align: center;
}
body {
    margin: 0;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    border-top: 3rem solid #009adf;
    border-bottom: 3rem solid #73BA59;
    overflow: hidden;
}
section {
    position:relative;
    margin: 0 auto;
    max-height: calc(100vh - 6rem);
    overflow: auto;
    padding: 3rem 0;
}
section > div {
    position:relative;
    width: 60rem;
    margin: 0 auto;
}
section div:last-child {
    margin-top: 0rem;
}
img {
    width: 50%;
    height: 100%;
    margin: 0 auto;
}
p {
    font-size: 1.2rem;
    line-height: 1.5em;
}
a {
    color: #009adf;
}
/* ============================================
   Responsiv
============================================ */
@media only screen and (max-width: 1499px) and (min-width: 1240px) {
	html {
		font-size: 1.15vw !important;
	}
}
@media only screen and (max-width: 1239px) and (min-width: 1024px) {
	html {
		font-size: 1.35vw !important;
	}
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
	html {
		font-size: 1.6vw !important;
	}
}
@media only screen and (max-width: 767px) and (min-width: 600px) {
	html {
		font-size: 2.5vw !important;
	}
}
@media only screen and (max-width: 599px) {
	html {
		font-size: 4.1vw !important;
	}
}
@media only screen and (max-width: 1239px) {
    section > div {
        width: 90%;
    }
}
@media only screen and (max-width: 767px) {
    img {
        width: 90%;
    }
}