* {
  box-sizing: border-box;
}

:root {
  --background: white;
  --primary: #ff1ead;
  --secondary: #1effc3;
  --card-size: 300px;
}

body {
  height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--background);
  font-family: "Varela Round", sans-serif;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card {
  width: calc(var(--card-size) * 1.586);
  height: var(--card-size);
  border-radius: 0.75rem;
  box-shadow: 0 22px 70px 4px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(0, 0, 0, 0.3);
  background: black;
  display: grid;
  color: white;
  align-items: center;
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: scale(1.1);
  box-shadow: 0 32px 80px 14px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.title {
  font-size: 3.25rem;
	text-align: center;
}

.message {
  font-size: 1.5rem;
	text-align: center;
}

.card a {
  color: yellow;
  text-decoration: none;
}

.card a:hover {
  color: yellow;
  text-decoration: underline;
}
