html, body {
  height: 100%;
}

body {
  /* font-family: "Century Gothic"; */
  font-family: "Montserrat";
  text-align: center;
  background: radial-gradient(rgb(250, 250, 250), rgb(190, 190, 190));

  touch-action: manipulation;
}

h1 {
  font-size: 50px;
}

a.step {
  color: black;
  text-decoration: none;
}

.step-back {
  float: left;
}

#card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;

  width: 250px;
  height: 375px;

  margin: 20px;
  /* padding: 10px; */

  cursor: crosshair;

  font-size: 18px;

  background-color: white;

  border: 3px solid #eee;
  border-radius: 10px;

  transition: box-shadow 1s, transform 0.5s;
}

.card:hover {
  box-shadow: 2px 2px 10px black;
  transform: rotate(3deg) scale(1.1);
}

.header {
  display: flex;
  align-items: center;

  margin-bottom: 10px;
  padding: 10px;

  border-bottom: 2px solid #eee;
}

.header img {
  width: 70px;
  height: 70px;

  border: 2px solid #eee;
  border-radius: 35px;

  object-fit: cover;

  flex-shrink: 0;
}

.name {
  flex-grow: 1;

  font-weight: bold;
}

.host {
  margin-bottom: 10px;
  /* padding: 10px; */

  text-decoration: underline;
}

.members {
  /* white-space: pre-line; */

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  flex-grow: 1;

  margin-bottom: 10px;
}
