:root {
  --background: #f5f5f5;
  --secondary-background: #eeeeee;
  font-size: 16px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

body {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  align-items: center;
  justify-content: center;
  background: var(--background);
}

#error {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(214, 84, 84);
  color: white;
  padding: 5px;
  text-align: center;
  position: absolute;
  top: -100%;
  width: 100%;
  height: 30px;
  transition: top 0.5s ease-in-out;
}

#sunItem {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}


.sunInfoImg {
  width: clamp(32px, 10vw, 64px)
}

.item {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  background: var(--secondary-background);
  width: 90%;
  height: fit-content;
  padding: 50px 0;
  border-radius: 50px;
}

#quote {
  margin-top: 20px;
  font-size: clamp(1rem, 3.5vw, 2rem);
  width: 90%;
}
#author {
  margin-top: -10px;
  font-size: clamp(.75rem, 2vw, 1.5rem);
}

button {
  border-radius: 25px;
  padding: 25px;
}

sub {
  margin-bottom: 10px;
}

h1 {
  margin: 0;
}

h3 {
  font-size: 0.75em;
  margin: 0;
}

#location {
  font-size: clamp(1rem, 3.5vw, 2rem);
}

#data {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

#animalImg {
  width: 90%;
  aspect-ratio: initial;
  max-width: 500px;
  max-height: 300px;
  border-radius: 30px;
}
#animalItem {
  padding: 25px;
  max-width: 85%;
}
#jokeBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
#jokeBox sub {
  width: 90%;
  font-size: clamp(.75rem, 2vw, 1.5rem);
}
#jokeBox h2 {
  width: 90%;
  font-size: clamp(1rem, 3.5vw, 2rem);
}

#menuImgWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.menuImg {
  width: 90%;
  border-radius: 25px;
}