* {
  box-sizing: border-box;
}

:root {
  --background: #212121;
  --background-card: #FAFAFA;
  --secondary: #1effc3;
  --card-size: 300px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--background);
  display: grid;
  place-items: center;
  min-width: 320px;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: var(--background-card);
  margin: 2rem 4rem;
  padding: 4rem;
  border-radius: 1.5rem;
}

.card .title {
  font-size: 4vw;
  font-weight: bold;
}

.card .subtitle {
  font-size: 3vw;
}

.logo {
  width: 100%;
}

.contact_wrapper {
  display: grid;
  grid-template-columns: auto 35%;
}

.contact_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.5vw;
}

.contact_row a {
  color: black;
}

.footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.footer a {
  color: black;
  text-transform: uppercase;
  font-size: 1.2vw;
}

@media (max-width: 680px) {
  .card {
    margin: 10px;
    padding: 2rem;
    border-radius: 1rem;
  }
}