html{
  box-sizing: border-box;
  overflow-x: hidden;
}
header p{
  font-weight: bold;
  font-size: 2em;
  display: inline;
}
h1{
  height: 2vh;
}
p{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.2em;
}
header{
  padding-top: 5vh;
  padding-left: 5vw;
  padding-right: 5vw;
  background-color: rgb(211, 211, 211);
  height: 13vh;
  width: 90vw;
  border: solid black;
  border-bottom: 0;
}
header a {
 float: right;
 margin: 0 1vw;
 text-decoration: none;
 color: black;
}
header a:hover{
  color: white;
}
main{
  display: flex;
  justify-content: space-evenly;
  padding-top: 8vh;
  text-align: center;
  min-height: 58.6vh;
  border: solid black;
  border-bottom: 0;
  width: 100vw;
  flex-direction: row;
}
main a{
  display: flex;
  width: 25vw;
  height: 50vh;
  border: 2px solid black;
  border-radius: 2vw;
  background-color: lightgray;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 2em;
  transition: 0.2s;
}
main a:hover{
  width: 27.5vw;
  border: 3px solid black;
}
#img_arrow{
  text-align: center;
  width: 15vw;
  height: 20vh;
}
body{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
}
#mainwebb{
  min-height: 440px;
  display: flex;
  justify-content:center;
  justify-content: space-around;
  border: solid black;
  border-radius: 20px;
  background-color: gray;
}
.hemsidor{
  display: flex;
  margin: 3px;
  height: 100px;
  width: 100px;
  padding: 20px;
  border: solid black 2px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: lightgray;
}
footer{
  background-color: rgb(211, 211, 211);
  position: relative;
  bottom: 0;
  padding: 20px;
  padding-bottom: 30px;
  min-height: 10px; 
  text-align: center;
  border: solid black;
  width: 100vw;
}