* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background-color: rgb(250, 210, 229);
  font-family: "Sour Gummy";
}

img {
  height: 170px;
  width: 600px;
  object-fit: cover;
}

h1 {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  margin-top: 20px;
  margin-bottom: 30px;
  color: black;
}

h2 {
  color: black;
}

html,
body {
  height: 100vh;
  width: 100vw;
  font-family: Arial, sans-serif;
  color: #000000;
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.nav-buttons {
  margin-bottom: 20px;
  margin-top: 0;
}

h2 {
  background-color: white;
}

p {
  background-color: white;
}

.nav-buttons button {
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 1.1rem;
  background-color: white;
  cursor: pointer;
  color: #000000;
}

.panels {
  width: 80vw;
  background-color: white;
  height: 50vh;
  border: 2px solid #000000;
  padding: 20px;
  overflow: hidden;
  position: relative;
  visibility: hidden;
}

.panel {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  padding: 20px;
}

.panel.active {
  opacity: 1;
  pointer-events: auto;
}
