
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
:root{
  --color-neutral-0:#0e0c0c;
  --color-neutral-10:#171717;
  --color-neutral-30:#A829Ae;
  --color-neutral-40:#f5f5f5;
}
*{
  font-family:"inter", sans-serif;
  margin: 0;
  padding:0;
  box-sizing: border-box;
  letter-spacing: 1px;
}
body {
    background-color: powderblue;
  }
  h1 {
    background:rgb(194, 180, 180);color: black; text-align: center; border-style:ridge
  }
  h2 {
    background:rgb(194, 180, 180);font-family: courier; font-size: 160%;color: rgb(5, 5, 5); text-align: center;
  }
  p {
    color: black;text-align: justify;
  }

  
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*background-color: #333;*/
  }
  
  li {
    float: left;
    display:flex;
    
    
  }

img {
  border-radius: 10px;
}

  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change the link color to #111 (black) on hover */
  li a:hover {
    background-color: #0c0c0c;
  } 
  table, th, td {
    border: 1px solid white;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto; 
  }
  th, td {
    background-color: rgb(132, 133, 133);
  }
  .footer-link{
    text-decoration: none;
  }
  footer {
    width: 100%;
    color: var(--color-neutral-40);
    
  }
  #footer-content{
    background-color: var(--color-neutral-10);
    grid: display;
    grid-template-columns: repeat(1, 1fr);
    padding: 3rem 3.5rem;
  }
  #footer-social-media{
    display:flex;
    gap:2rem;
    margin-top:1.5rem;
  }
  #footer-social-media.footer-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height:2.5rem;
    width:2.5rem;
    color: var(--color-neutral-40);
    border-radius:50%;
  }

  #instagram{
    background:linear-gradient(#7f37c9, #ff2992,#ff9807);
  }
  #facebook{
    background-color: #4267b3;
  }
  #whatsapp{
    background-color: #25d366;
  }
