body {
  font-family: "Roboto", sans-serif;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.btn-projects {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.3s ease;

  background-color: #000;
  color: white;
}

.btn-projects::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: white;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.btn-projects:hover::before {
  width: 400px;
  height: 400px;
}

.btn-projects:hover span {
  color: #000;
}

.btn-projects span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.projects {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.project-card {
  width: 350px;
  height: 200px;
  background: #000;
  border: 2px solid white;
  border-radius: 15px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-content {
  padding: 20px;
  color: white;
}

.project-content h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.project-content {
  padding: 20px;
  color: white;
  height: 80%;
  display: flex;
  flex-direction: column;
}

.project-button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.project-button:hover {
  background: white;
  color: black;
}

.project-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-title img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.project-title h2 {
  margin: 0;
}
