* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
 html {
    font-size: 62.2%;
}

.header {
    display: flex;
    flex-direction: row;
    width: auto; 
    height: 60px;
    background-color: white;
    justify-content: center;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
    
}
 .titulo{
    font-family: 'Ubuntu', sans-serif!;
    font-size: 30px;
 }

.logo img {
    width: 40px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    width: auto;
    margin: 0;
    align-items: flex-start;

}


@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  box-sizing: border-box;
}


.card {
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
}

.card-header{
    background-color: black;
}

.card-header img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding-top: 20px;
    padding-bottom: 20px;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  min-height: 300px;
}

.tag {
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  padding: 2px 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.tag-teal {
  background-color: black;
}

.parrafo {
   font-size: 15px;
    text-align: center;
}

.ti { /* Este es el titulo   */
    font-size: 15px;
    padding: 10px 0 10px 0;
    text-align: center;
}


#p{
    margin-top: 10px;
    font-size: 12px;
   
}

.input {
    border: 2px solid black;
    border-radius: 4px;
    box-sizing: border-box;
    width: 220px;
    height: 40px;
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 15px;
    
}

.input::placeholder{
    text-align: center;
}
.button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: white;
    background-color: black;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
/*     margin-top: 10px;
 */    margin-bottom: 20px;
   }
   
.button:hover {
    background-color: #2EE59D;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-7px);
   }
   
.button:active {
    transform: translateY(-1px);
   }

.resultados{
    text-align:center;
    font-size: 15px;
    color: #2EE59D;
    padding-bottom: 10px; 
}

.footer {
  position: fixed;
  bottom: 0px;
  background-color: black;
  width: 100%;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;

}
.footer a {
  text-decoration: none;
  color: #2EE59D;

}
