/*
fonts:
body - arial
headers -
font-family: 'Nunito Sans', sans-serif;


colours:
#A9BF04 - green
#F28705 - orange
#A64F03 - brown
#F23827 - red
#8C0303 - burgundy
*/

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: arial;
  scroll-behavior: smooth;
}
p {
  line-height: 2;
  font-size: 18px;
}
h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
}

.logo{
  width:50%;
}
#map {
  height: 85%;
}
/* HEADER */
header {
  border-bottom: 3px solid #F28705;
  text-align: center;
  
}
#headlogo {
  width: 7%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 20px;
}

/* home page */
#home {
  height: 100vh;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
}
#homeinner {
  display: inline-block;
  text-align: center;
  margin: 0 auto;

}
#home p{
  margin: 0;
}
.button {
  margin-top: 15px;
  background-color: #A9BF04;
  color: #3f3d3d;
  font-family: 'Nunito Sans', sans-serif;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 10px;
}

a:visited {
  color: white;
}
a:hover {
  color: #fff;
}
.info_content{
  width: 100%;
  text-align: center;
}

#backbutton{
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: black;
  text-decoration: none;
  float: right;
  margin-top: -56px;
  margin-right: 20px;
}

#backbutton i {
    font-size: 28px;
    margin-right: 10px;
}

#backbutton:hover{
  color: #F23827;
  text-decoration: underline;
}


