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

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

.logo {
  font-size: 30px;
  font-weight: 600;
}

.links {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 60px;
}

.links a {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  display: inline-block;
}

.get-started {
  background-color: #151515;
  padding: 18px 23px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  transition: all 0.3s ease;
}

.get-started:hover {
  color: black;
  background-color: #fff;
  cursor: pointer;
}

.hero {
  padding: 30px 0;
}

.hero h1 {
  font-size: 11rem;
  font-weight: 700;
  text-align: center;
}

.filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

.filters button {
  border: 3px solid transparent;
  background-color: #151515;
  transition: all 0.3s ease;
  border-radius: 50px;
  color: #fff;
  font-size: 24px;
  padding: 20px 30px;
  cursor: pointer;
}

.filters button:first-child {
  background-color: #fc4607;
}

.filters button:hover {
  background-color: #fc4607;
}

.filters:hover button:first-child {
  background-color: #151515;
}

.filters button:active {
  border: 3px solid white;
}

.card-container {
  padding: 40px 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #0f0f0f;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 25px;
  overflow: hidden;
  width: 440px;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.02);
}

.card-image img {
  height: 340px;
  width: 100%;
  border-radius: 30px;
}

.card-content {
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.card-content span {
  background-color: #5a1c09;
  color: #e5895e;
  font-size: 20px;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.card-content h2 {
  width: 85%;
  color: #e9e9e9;
  font-size: 28px;
  font-weight: 500;
}

.card-content p {
  color: rgb(97, 97, 97);
}
