body {
  text-align: center;
  display: flex;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
  margin: 0;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 350px;
  display: flex;
  flex-direction: column;
  background-color: hsl(0, 0%, 12%);
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 5%;
  margin-bottom: 5%;
  border-radius: 10px;
}

.top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

img {
  width: 100px;
  width: 100px;
  border-radius: 50%;
}

.country {
  color: hsl(75, 94%, 57%);
  font-weight: 600;
  margin-top: 5px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-weight: 700;
}

a {
  background-color: hsl(0, 0%, 20%);
  padding: 10px;
  border-radius: 10px;
  margin-left: 35px;
  margin-right: 35px;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
}

a:focus,
a:hover {
  background-color: hsl(75, 94%, 57%);
  color: black;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

h2 {
  margin: 0;
}

@media screen and (max-width: 375px){
  .container {
    width: 280px;
    margin-top: 10%;
  }

  p {
    font-size: 13px;
  }
}
