@import url('https://fonts.googleapis.com/css?family=Roboto:900');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab');
@import url('https://fonts.googleapis.com/css?family=Roboto:100');
@import url('https://fonts.googleapis.com/css?family=Merienda');

body {
	background-color: #ffffff;
	font-family: 'Roboto', serif;
	margin: 0;
}

H1 {
    font-size: 500%;
    text-align: center;
    color: #ffb100;
    margin: 0;
    margin-top: 5%;
}

H2 {
    font-size: 200%;
    text-align: center;
    margin-bottom: 10px;
}

p {
    font-family: 'Roboto Slab', serif;
    font-size: 200%;
    text-align: center;
    margin-bottom: 10px;
}

img {
    width: 100%;
    height: auto;
}

button {
    width: 100%;
    font-size: 150%;
    font-family: 'Merienda';
    border-radius: 10px;
    background-color: #ffb100;
    border-color: #865e04;
}

object {
    width: 100%;
    background-image: url(Sign.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.wrapper {
    /*background-color: #6a6a6a;*/
    border-style: solid;
    margin: auto;
    margin-top: 20px;
    width: 80%;
    padding: 10px;
}

.box {
/*    border: solid red 2px;*/
    position: relative;
    text-align: center;
    margin: auto;
    width: 50%;
}

.overlayText {
    font-family: 'Roboto', serif;
    font-weight: 900;
    font-size: 300%;
    color: #ffb100;
    text-shadow: 0 0 2px black;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text {
    font-size: 100%;
}

.logo {
    width: 25%;
}

a:link {
	text-decoration: underline;
	color: Black;
}

a:visited {
	text-decoration: none;
	color: grey;
}

a:hover {
	color: hotpink;
}

a:active {
	color: red;
}

@media (min-width: 50em) {
    
    .overlayText {
        font-size: 500%;
    }
}

@media (min-width: 80em) {
    
    .wrapper {
        width: 50%;
    }
}