/* Estilos generales */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    margin: 0;
    padding: 0;
    background-color:#3B3B6D;
    background-image: url("../Imagenes/Usa.png");
    background-size: cover; /* Adjust the image size to cover the entire background */
    background-position: center; /* Center the background image */
    padding: 20px; /* Add padding to create space around content */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1); /* Highlighting text shadow */
  }
  
  header {
    
    color: #fff;
    text-align: center;
    
  }
  
  main {
    padding: 20px;
  }
  
  section {
    background-color: #3B3B6D;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  footer {
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  
  /* Estilos para enlaces */
  
  a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: rgb(0, 162, 255);
  }
  
  /* Estilos específicos para los datos de contacto */
  
  header p {
    margin: 7px 0;
  }
  
  header a {
    color: white;
    font-weight: bold;
  }
  
  /* Estilos para títulos */
  
  /* Estilos para párrafos */
  
  p {
    line-height: 1.6;
    font-size: larger;
  }

  button {
    padding: 1rem 3rem;
    font-size: 1rem;
    border: none;
    color:white ;
    background-color: #3B3B6D;
    cursor: pointer;
    border-radius: 35px;
  }
  button:hover{
    background: white;
    color: black;
}