*{
    margin: 0;  
    padding: 0;
}



table, th, td{
    border: 1px solid black;
    background-color: paleturquoise;
    font-style: italic;
    font-size: 1.5rem;
    padding: 5px;
    border-spacing: 5px;
    border-collapse: collapse;
    font-family: 'Trocchi', serif;
    box-shadow: 10px 10px lightblue;
    margin: auto; margin-right: auto;
}
caption{
    line-height: 70px;
    margin-top: 3rem;
}

span{
    color: rgb(42, 3, 3)
}

.trocchi-regular {
    font-family: "Trocchi", serif;
    font-weight: 400;
    font-style: normal;
  }

  ul{
    display: flex;
    list-style-type: none;
    background-color: #457b9d;
    overflow: hidden;
    padding: 1rem 1rem 1rem 0;
    justify-content: end; 
    gap: 5px;
    position: fixed;
    width: 100%;
  }


  li a{
   
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
 
  }

li a:hover{
    background-color: #19628f;
  }


.card-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid black;
    background-color: #457b9d;
    border-radius: 10px;
    box-shadow: 10px 10px lightblue;
    color:white;
    text-align: center;
    margin-right: 1rem;
    margin: 0 15rem 0 15rem;
}

.parrafo{
  padding: 1rem;
}

dl{
    text-align: center;
    padding: 20px;
}

.card{
    border: 1px solid black;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-color: #457b9d;

}

.iframe{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 3rem;
}

h1, h2{
  padding: 1rem;
}

.formulario{
  display: block;
  background-color: lightgray;
  padding: 3rem;
  border-radius: 18px;
  color: rgba(23, 23, 21, 0.642);
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: large;
  gap:20px;
  margin: 0 30% 2rem 30%;
}

.formulario__grid{
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
}

.submits{
  display: flex;
  flex-direction: column;
  align-items: center;
}

input{
  border-color: gray;
  border-radius: 6px;
  padding: 6px;
  box-shadow: 5px 5px gainsboro;
  margin: 10px;
}

input[type=submit]{
  color: white;
  background-color: orange;
  width: 8rem;
  border-style: hidden;
  padding: 12px;
  }

  input[type=submit]:hover{
    scale: 1.1;
  }

  footer{
    display: flex;
    justify-content: center;
  }



