body {
    font-family: Arial, sans-serif;
    margin: 0.5rem;
    padding: 0.5rem;
    background-color: #080808;
  }
  
  h1 {
    color: #333;
  }
  
  main {
    display: flex;
    flex-direction: column;
    background: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }

  footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  footer a {
    color: white;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }

  /*............... menu bar ................*/
  .site-header {
    position: sticky;
    top: 0;
    background-color: #000;
    padding: 1rem;
    z-index: 1000;
    border-bottom: 2px solid white;
  }
  
  .menu_container{
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: start;
    height: 5rem;
    
  }
  .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    border: 1px solid white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .navbar a:hover {
    background-color: white;
    color: black;
  }

  .logo img {
    height: 5rem;
    margin: 1rem;
  }

  /***********************index.njk******************************/
  

  .main_container {
    height: 70vh; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.background_picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('/assets/coffee_bar.jpg'); 
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none; /* No afecta la interacción con el contenido */
}

.background_overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1; 
}

.content{
  position: relative;
  position: relative;
  color: white; 
  text-align: center;
  width: 100%;
  height: 100%;
}

.content_text{
  position: relative;
  z-index: 3;
}

.content_text a{
  color: white;
}

.info_chart_row{
  display: flex;
}

.info_chart_row .info_chart{
  position: relative;
  flex: 1;

}

.info_chart_row .map{
  width: 100%;
  height: 100%;
  flex: 1;
}

.info_chart .h1_charts{
  margin: 1rem;
  border: 0.5rem solid white;
  color: white;
  background-color: black;
  z-index: 5;
}

.pet_logo_picture{
  position: absolute;
  top: 0;
  left: 0;
  height: 6rem;
  width: 4rem;
  background-size: cover;
  background-position: center;
  background-image: url('/assets/dog_logo.jpg');
}
/*************************second main container*******************/

.second_main_container {
  height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  background-color: black;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background 0.5s ease;
  padding-bottom: 2rem;
  margin: 0.5rem;
}

.second_background_picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 95%;
  background-image: url('/assets/log.jpg'); 
  background-size: cover;
  background-position: center;
  background-size: 85%;
  background-repeat: no-repeat;
  z-index: 0; 
  pointer-events: none; /* No afecta la interacción con el contenido */
  border: 0.5rem solid white;
}

.second_background_overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro con opacidad */
  z-index: 1; /* El overlay está por encima de la imagen */
}





.bubble_text {
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  max-width: 80%;
  border: 0.5rem solid white ;
}

.circle_row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 1rem;
  gap: 1rem;
}

.circle {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle:hover {
  transform: scale(1.1);
  cursor: pointer;
}