body {
  background-color: #141414;
  font-family: inter;
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 620px;
  background-color: #1f1f1f;
  border-radius: 10px;
}
.container img {
  display: block;
  width: 100px;
  border-radius: 50%;
  margin: 50px auto 20px;
}
.container .text {
  text-align: center;
}
.container .text h2 {
  color: white;
}
.container .text .city {
  font-size: 14px;
  font-weight: bold;
  color: #7a9720;
  margin-top: -10px;
}
.container .text .front {
  color: #aaa;
  margin-top: 35px;
}
.container .bttn-link {
    width: 320px;
    margin: 30px auto
}
.container a {
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  display: block;
  margin-top: 17px;
  padding: 10px;
  color: white;
  background-color: #2c2b2b;
  border-radius: 7px;
}
.container a:hover {
    background-color: #7a9720;
    color: #141414;
    cursor:
}