body,
html {
  height: 100%;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

.card {
  background-color: white;
  border-radius: 10px;
  margin: 1.5rem;
  max-width: 450px;
  height: 360px;
  box-shadow: 0px 5px 10px 0px rgba(217, 217, 217, 0.5);
  padding: 40px 100px 60px;
  display: grid;
  align-items: center;
  align-content: center;
  gap: 42px;
}

.header {
  font-size: 24px;
  font-weight: 500;
}

.content {
  line-height: 24px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.logo img{
  width: 64px;
}

@media only screen and (max-width: 768px) {
  .card {
    padding: 40px 20px 60px;
    margin: 0.5rem;
  }
}