* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

body {
  background-image:
    linear-gradient(rgba(0, 0, 0, 1), rgba(50, 0, 150, 0.5)),
    url("https://images.unsplash.com/photo-1741851374655-3911c1b0e95a?q=80&w=2667&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 40%;
  background-attachment: fixed;
  overflow-x: hidden;
}

.flex {
  gap: 1rem;
  display: flex;
}

.content {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  align-items: center;
}

.searchbar {
  width: 100%;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(4px) saturate(180%);
}

.searchbar input {
  background: transparent;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 24px 20px;
  font-size: 20px;
  color: #cac7ff;
}

.searchbar button img {
  width: 25px;
}

.searchbar button {
  border: 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #58629b;
  cursor: pointer;
}

.buttons {
  display: flex;
  min-width: 700px;
  gap: 10px;
  justify-content: center;
}

.buttons button {
  color: whitesmoke;
  background-color: #58629b;
  min-width: 85px;
  padding: 5px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
}

.buttons button:hover {
  background-color: #44326a;
  border: 1px whitesmoke;
  box-shadow:
    0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.sitelinks {
  display: flex;
  min-width: 700px;
  gap: 10px;
  justify-content: center;
  padding-top: 50px;
}

.sitelinks img {
  width: 100px;
  height: 100px;
}
