html {
    background-color: #89CFF0;
    font-family: 'Squada One', sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    letter-spacing: .1em;
    font-size: 3em;
}

p {
    letter-spacing: .05em;
}

.largep {
    font-size: 1.5em;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image {
    max-width: 20%;
    height: auto;
}

.header {
    background-color: gray;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 5em;
}

.footer {
    background-color: gray;
    height: 5em;
    display: flex;
    justify-content: center;
    gap: 2em;
    align-items: center;
}

.search {
    border-right: 1px solid black;
    padding-right: 10px;
    margin-right: 10px;
}

.search input {
    padding: 8px 12px;
    font-size: 1em;
    font-family: 'Squada One', sans-serif;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.no-results {
    text-align: center;
    font-size: 1.5em;
    padding: 2em;
    display: none;
}

a {
    color: black;
    text-decoration: none;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 9999;
  text-align: center;
  font-size: 20px;
}

.hidden {
  display: none;
}

.popup button {
  margin-top: 10px;
  padding: 8px 15px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background: #ff6a00;
  color: white;
  cursor: pointer;
}
