@charset "UTF-8";
/* CSS Document */
/* Kod för div-layouten */
.center {
  margin-left: auto;
  margin-right: auto;
}
/* Styling sidan */
body
{
 margin:0 auto;
 padding:0px;
 text-align:center;
 width:100%;
 background-color:#737373;
 background-image: url("infomeny_bg.png")
}
/* Styling menyval */
.menyval {
	position: relative;
	left: 10px;
	top: 10px;
	width: 200px;
	height: 200px;
	border: solid 1px black;
	background: rgba(0,0,0,0.3);
    border-radius: 5px;
}
/* Textstyling */
h1 { 
    font-family: Raleway; 
    font-size: 50px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 700; 
    line-height: 26.4px;
    color: white;
} 
h3 { 
    font-family: Raleway; 
    font-size: 20px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 700; 
    line-height: 15.4px; 
    color: white;
} 
p { 
    font-family: Raleway;
    font-size: 50px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 400; 
    line-height: 60px; 
} 
blockquote { 
    font-family: Raleway; 
    font-size: 21px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 400; 
    line-height: 30px; 
} 
pre { 
    font-family: Raleway; 
    font-size: 13px; 
    font-style: normal; 
    font-variant: normal; 
    font-weight: 400; 
    line-height: 18.5714px; 
}
/* Styling länkikoner */
img:hover{
  -o-transition:.1s;
  -ms-transition:.1s;
  -moz-transition:.1s;
  -webkit-transition:.1s;
  transition:.1s;
  border: solid 1px white;
 padding: 10px;
  border-radius: 5px;
}