@font-face {
  font-family: "font";
  src: url(assets\f ontsInter-VariableFont_slnt,wght.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "font", sans-serif;
  background-color: #141414;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1F1F1F;
  padding: 24px;
  border-radius: 12px;
}
.container img {
  width: 88px;
  height: 88px;
  border-radius: 999px;
}
.container h1 {
  color: white;
  font-size: 24px;
  margin-top: 24px;
}
.container_location {
  color: #C4F82A;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 24px;
  margin-top: 4px;
}
.container_info {
  color: white;
  font-size: 14px;
  margin-bottom: 24px;
}
.container_buttons {
  width: 280px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.container_buttons .button {
  display: inline-block;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  background-color: #333333;
  color: white;
  border: none;
  width: 100%;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.container_buttons .button:hover {
  background-color: #C4F82A;
  color: #333333;
}/*# sourceMappingURL=style.css.map */