@charset "UTF-8";
/* CSS Document */

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-align: center;
}
/* Default styles for all screen sizes */
body {
  font-size: 16px;
}

/* Styles for screens that are 480px or wider */
@media (min-width: 480px) {
  body {
    font-size: 18px;
  }
}

/* Styles for screens that are 768px or wider */
@media (min-width: 768px) {
  body {
    font-size: 20px;
  }
}


body, html {
  margin: 0;
  padding: 0;
}


.hero {
  background-image: url('IMG/cover.jpg');
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 0px 0;

}

.hero h1,
.hero p {
  margin: 5px 0;
}


h1 {
  font-size: 3em;
}

p {
  font-size: 1.5em;
}

ul {
  display: inline-block;
}

li {
  display: inline;
  margin: 0 10px;
}

a {
  text-decoration: none;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
}

a:hover {
  background-color: white;
  color: #006699;
}
