*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


body,html{
  height: 100%;
  width: 100%;
  background-color: black;
}

input{
  color: white;
  background-color: black;
  outline-offset: none;
  height: 28px;
  font-size: 1rem;
  font-family: cursive;
  padding: 15px 15px;
  display: block;
}

#main{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  flex-direction: column;
}


.imgs{
  height: 200px;
  width: 200px;
}
img{
  height: 180px;
  width: 180px;
  object-fit: contain;
  object-position: center;
}

.center{
  margin-top: 20px;
  height: 300px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
}

.cards{
  display: flex;
  flex-direction: row;
  border: 2px solid white;
}

