/* 

Your Name

*/

/* to set general font styles across the entire site, do it here. this will help ensure consistency */
@import url('https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed|Fredericka+the+Great|Katibeh|Medula+One|Racing+Sans+One|Roboto');

h1 {
	font-family: 'Racing Sans One', cursive;
	text-align: center;
	font-size: 40%
}

h2 {
	font-size: 80%;
}

body {
	font-family: sans-serif;
	background-size: 10%;
	font-family: 'Barlow Semi Condensed', sans-serif;
}

/* to set font styles on specific elements, do it like this. you will now overwrite the styles set on the body */
p {  
	font-family: 'Barlow Semi Condensed', sans-serif;
}

/* style your links */
a:link { 
	color: green;
}

a:visited {
	color: red;
}

a:hover {
	color:pink;
}

a:active {
	color: purple;
}

ul {
	list-style: none;
}

/* you can style your elements however you'd like. I'm adding a border so we can see them */
iframe {
	border: solid red 1px;
	width: 100%;
	height: 500px;
}

pre {
	border: solid blue 1px;
}

/* max-width: 100%; will prevent an element from extending beyond the page boundaries */
img {
	max-width: 100%;
}

/* width: 100%; will force an element to adopt the width of the page boundaries */
img.full-width {
	width: 100%;
}


/* CLASSES
---------- */

/* to apply different styles to different pages, you can add a class name to the body. when doing this, think about what you're changing and why. the overall structure and typogrphy around your site should feel consistent. any changes or deviations should be meaningful */
.home { 
	font-size: 36px;
}
.deluxe {
}

.menus{
	width: 150px;
	height: 150px;
	overflow: hidden;
	outline: 0px solid black;
	display: inline-block;
	margin: auto;
	position: relative;
  
}

.menus img { 
	width: 150px;
	height: 300px;
	position: absolute;
	transition-duration: 7s;
}

.menus a {
	display: block;
	position: relative;
	overflow: none;
	outline: 1px solid black;
}
.menus img:hover {
	top: -150px;
}


/* CONTAINERS
---------- */
/* why we use wrappers, here: http://stackoverflow.com/a/5275428 */
.wrapper {
	margin: 30px auto;
	max-width: 90%;
}

.header {
	padding-bottom: 30px;
}

.footer {
	padding-top: 30px;
}