
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
}

img {
  max-width: 100%;
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}

#header {
  background: url(img/header-bg.png);
  background-color: white;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 20px;
}

#header .redes {
  color: #BEBF32;
  text-align: right;
}

#header .redes li {
  display: inline-block;
  list-style: none;
  font-size: 30px;
  margin: 0 5px;
}

#menu {
  background: #BEBF32;
  color: white;
}

#menu ul {
  padding: 0;
}

#menu li {
  list-style: none;
  display: inline-block;
  width: 33%;
  text-align: center;
  text-transform: uppercase;
  padding: 7px;
  font-weight: bold;
  letter-spacing: 2px;
}

footer {
  background: #BEBF32;
  color: white;
  text-align: center;
  font-size: 12px;
  padding: 20px;
  margin-top: 60px;
}

footer p {
  margin: 0;
}


@media screen and (min-width: 576px) {
  .hidden-desktop {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .hidden-mobile {
    display: none;
  }

  #menu li {
    width: 100%;
  }

  #header {
    background-size: cover;
  }
}