:root {
  --Inter: Inter, sans-serif;
  --Green: hsl(75, 94%, 57%);
  --White: hsl(0, 0%, 100%);
  --Grey-700: hsl(0, 0%, 20%);
  --Grey-800: hsl(0, 0%, 12%);
  --Grey-900: hsl(0, 0%, 8%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--Grey-900);
  display: grid;
  place-items: center;
}

.name {
  font-family: var(--Inter);
  font-weight: 600;
  color: var(--White);
  margin-bottom: 12px;
  margin-top: 30px;
}

.place {
  font-family: var(--Inter);
  font-size: 1rem;
  color: var(--Green);
  margin: 0;
}

.description {
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 1rem;
  color: var(--White);
  text-align: center;
  padding: 1rem 0;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.buttons > * {
  font-family: var(--Inter);
  font-weight: 700;
  font-size: 1rem;
  background-color: var(--Grey-700);
  color: var(--White);
  padding: 1rem 0;
  border-radius: 0.625rem;
  border: none;
}

.buttons > *:hover {
  background-color: var(--Green);
  color: var(--Grey-900);
}

img {
  border-radius: 9999px;
  width: 100px;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card {
  background-color: var(--Grey-800);
  width: 90%;
  max-width: 400px;
  padding: 1.8rem;
  margin: 1.8rem;
  border-radius: 1rem;
}
