@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

body {
  margin: 0;
  padding: 0;
}

* {
  font-family: "Poppins", sans-serif;
}

html {
  cursor: none;
}

.container-home {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(120deg, #fdfbfb 20%, #e8e8e8 100%);
}

.container-home header {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-justify: center;
}

.container-home header ul {
  display: flex;
  gap: 2rem;
  width: 90%;
}

.container-home header .menu {
  text-decoration: none;
  color: black;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.container-home header .menu::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.container-home header .menu:hover::after {
  transform: scaleX(1);
}

.container-home header h1 {
  margin: 0;
}

.container-home header .a1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: black;
  cursor: none;
}

.container-home header .a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3rem;
  font-size: 1.5rem;
  color: black;
  cursor: none;
}

.container-home header .a:active {
  color: blue;
}

.container-home .content-card {
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
}

.cursor {
  position: fixed;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  transition: 0s;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
}

.search p:hover ~ .cursor {
  transform: scale(6);
}

@media only screen and (max-width: 650px) {
  .container-home .content-card {
    flex-direction: column;
    height: auto;
  }

  .cursor {
    display: none;
  }
}
