@font-face {
  font-family: "Inner-Bold";
  src: url("../assets/fonts/static/Inter-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Inner-SemiBold";
  src: url("../assets/fonts/static/Inter-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Inner";
  src: url("../assets/fonts/static/Inter-Regular.ttf") format("truetype");
}

:root {
  --green: hsl(75, 94%, 57%);
  --white: hsl(0, 0%, 100%);
  --gray: hsl(0, 0%, 12%);
  --light-gray: hsl(0, 0%, 20%);
  --dark-gray: hsl(0, 0%, 8%);
}

body {
  background-color: var(--dark-gray);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.content-container {
  background-color: var(--gray);
  color: var(--white);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
  width: max-content;
  font-family: "Inner", sans-serif;
  padding: 2rem;
  border-radius: 10px;
}

img {
  width: 5rem;
  border-radius: 50%;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 110%;
}

.location {
  font-family: "Inner-Bold";
  color: var(--green);
}

.name {
  font-family: "Inner-SemiBold";
  font-size: 1.5rem;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

button {
  font-family: "Inner-Bold", sans-serif;
  color: var(--white);
  background-color: var(--light-gray);
  border: none;
  padding: 0.75rem 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
}

button:hover {
  background-color: var(--green);
  color: var(--dark-gray);
}
