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

body {
  margin: 0;
  background-color: transparent;
  color: white;
  font-family: "Roboto", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 50%;
  height: 70%;
  background: var(--blob-1, rgba(252, 61, 61, 0.4));
  top: 25%;
  left: 30%;
}

body::after {
  width: 50%;
  height: 70%;
  background: var(--blob-2, rgba(228, 140, 100, 0.3));
  top: 2%;
  left: 25%;
}

.search-bar {
  padding: 16px 24px;
  width: 60%;
  max-width: 600px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.search-bar:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.search-bar::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.logo {
  font-weight: 100;
  font-size: 60px;
  margin: 0;
  letter-spacing: 5px;
  text-transform: uppercase;
  user-select: none;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
}
