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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: large;
  letter-spacing: 0.05rem;
  color: white;
  background-color: rgb(35, 35, 35);
  scroll-behavior: smooth;
}

main {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  overflow-x: auto;
  overflow-y: scroll;
  margin: 1rem;
}

p {
  margin: 0;
  line-height: 1.5rem;
}

a {
  text-decoration: none;
}

i {
  font-size: 1.5rem;
  color: rgb(0, 255, 135);
}

ol,
ul {
  list-style: none;
  padding: 0;
}

label {
  cursor: text;
  color: rgb(255, 0, 75);
  font-size: larger;
}

select {
  cursor: pointer;
}

button,
input[type=button] {
  all: unset;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgb(255, 125, 0);
}

input[type=text],
input[type=email],
input[type=tel] {
  padding: 0.4rem;
  border: none;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  font-size: large;
  color: rgb(0, 255, 135);
  background-color: rgb(55, 55, 55);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  outline: transparent;
}

nav#main-nav {
  display: block;
  position: sticky;
  bottom: 0;
  width: 100%;
  padding: 1px;
  background-color: rgb(45, 45, 45);
}
nav#main-nav ol {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
nav#main-nav ol li {
  display: inline-block;
  margin-left: 4%;
  margin-right: 4%;
}
nav#main-nav ol li a {
  padding: 0.85rem;
  color: rgb(0, 255, 135);
}
nav#main-nav ol li a i {
  font-size: 1.25rem;
  color: rgb(0, 255, 135);
}

#discover-results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.75rem 0 0;
  width: 100%;
}
#discover-results .discover-card {
  display: flex;
  align-items: center;
  width: 100%;
  height: 5rem;
  padding: 0.5rem 0.75rem;
  background-color: rgb(55, 55, 55);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#discover-results .discover-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
#discover-results .discover-card a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  color: white;
}
#discover-results .discover-card a .thumbnail {
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}
#discover-results .discover-card a h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}