@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: Quicksand;
  background-color: #222;
  color: white;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    align-self: end;
}

.title {
    font-size: 28px;
    font-weight: 600;
    border-bottom: 1px solid white;
}

.menu-btn {
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #ddd;
}

.menu-btn:hover {
    transform: scale(1.12);
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 600px;
}

.search-bar form {
    width: 100%;
    display: flex;
    gap: 10px;
}

input[type="search"] {
    padding: 5px 10px;
    border: none;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    background-color: rgb(213, 213, 213);
    color: black;
}

.search-btn {
    background-color: rgb(255, 225, 58);
    color: black;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
}