* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

:root{ /*Variable Css, se usan con var y nombre de la variable, con un segundo argumento como default*/
  --color: #fff;
}

body {
  background: #f4f8fb;
  color: #333;
}

header {
  background: #005b96;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a.active {
  text-decoration: underline;
}

main {
  padding: 2rem;
}

section {
  display: block;
}



h2{
  padding-top: 6%;
  text-align: center;
}
h2[class = title]{
  padding-top: 0%;

}
p{
  text-align: center;
}
a[class= contact]{
  display: block;
  text-align: center;
  text-decoration: none;
  

}
iframe{
  display: block;
  width: 70vw;
  height: 65vh;
  margin: auto;
  border: 0; 
}
ul{
  display: block;
  margin: 0 auto;
  border: 0; 
}
li{
  display: block;
  text-align: center;
  border: 0; 
}

footer {
  background: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}
