@font-face {
  font-family: 'TittleFont';
  src: url('fonts/font1.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'BodyFont';
  src: url('fonts/Montserrat-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}  

a {
  color: inherit; /* Heredar el color de su contenedor */
  text-decoration: none; /* Quitar subrayado */
}

a:hover, a:focus {
  color: inherit; /* Mantener el color en hover y focus */
  text-decoration: none; /* Asegurar que no aparezca subrayado en hover y focus */
}

html, body {
  height: 100%;
  font-family: BodyFont;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: BodyFont;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

header nav ul li {
  margin: 0 1rem;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
}

main {
  flex: 1;
}

.hero {
  position: relative;
  background: url('images/background.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

.hero h1, .hero p, .cta-button {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #ff5733;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background-color: #f4f4f4;
}

.feature {
  flex: 1;
  margin: 0 1rem;
  text-align: center;
}

footer {
  background-color: #333;
  color: #fff;
  position: relative;
  text-align: center;
  padding: .5rem;
  flex-shrink: 0;
}