@font-face {
  font-family: "Poppins";
  src: url(../../assets/fonts/Poppins-Medium.ttf);
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Poppins, Helvetica, sans-serif;
  background-color: #111;
  color: #f1f1f1;
}

h1 {
  text-align: center;
  margin-top: 20px;
}
body a {
  text-decoration: none;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.card-list {
  list-style-type: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 225px);
  justify-content: center;
  gap: 25px;
}

.card {
  position: relative;
  height: 275px;
  color: #f1f1f1;
  background-color: #222122;
  border-radius: 5px;
}
.clipped-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  clip-path: circle(100%);
  transition: clip-path 0.4s ease-out;
}
.card:hover .clipped-img {
  clip-path: circle(80px at 50% 90px);
}
.content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px 16px;
}
.card-location {
  margin-top: auto;
  font-size: 26px;
  color: #e6e6e6;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.actions-container {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.action-btn {
  width: 25px;
  height: 25px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.action-btn img {
  width: 75%;
}
