/* * Tag para o CSS entender letras do alfabeto brasileiro */
@charset "UTF-8";

/* * Configurações padrão */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  width: 100%;
}

/* * Principal */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.texto {
  text-align: center;
}

.container {
  display: flex;
  width: 75%;
  height: auto;
  flex: auto;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.card {
  max-width: 350px;
  margin: 25px;
}

img {
  min-width: 250px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.info {
  display: none;
  min-width: 250px;
  border-radius: 0 0 10px 10px;
  padding: 10px;
  align-items: center;
  text-align: center;
  color: #fff;
  background-color: #595959ac;
  transform: translate(0, -103%);
}

/* * Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
