* {
  box-sizing: border-box;
}

body {
  border: 0;
  padding: 0;
  background-color: hsl(0, 0%, 8%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Figtree", sans-serif;
}

.content {
  background-color: hsl(0, 0%, 12%);
  max-width: 350px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
}

button {
  width: 100%;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 0;
  color: hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 20%);
  font-weight: 600;
}

button:hover {
  cursor: pointer;
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
  font-weight: 600;
}

.front {
  color: hsl(0, 0%, 100%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 14px;
  font-weight: 400;
}

.london {
  color: hsl(75, 94%, 57%);
  margin: 0;
  padding-top: 0.5rem;
  font-size: 14px;
  font-weight: 600;
}

h1 {
  color: hsl(0, 0%, 100%);
  padding-top: 1rem;
  margin: 0;
}
img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}
