* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Balsamiq Sans", sans-serif;
    background: linear-gradient(0deg, #9A499D 2.33%, #9930B0 24.76%, #9639B3 52.1%, #623B8B 75.06%, #380D54 100%);
    color: #F8F0D9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100vw;

  }

  .language-switch {
    position: absolute;
    font-weight: bold;
    top: 2.5rem;
    right: 2rem;
    font-size: 1.3rem;
    z-index: 999;
  }
  
  .language-switch a {
    color: #f8f0d9;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  
  .language-switch a:hover {
    text-decoration: underline;
    color: #ffe484;
}

  

/* Stars section */

  .stars-background {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw; 
    height: 100vh; 
    z-index: -1;
    background: url('Images/Group 4.png') center center / 100% 280% no-repeat;
    background-size: contain; 
    background-position: center top; 
    background-repeat: repeat; 
    background-attachment: fixed; 
  }

  .shooting-star {
    position: fixed;
    width: 0.25rem;
    height: 0.125rem;
    background: white;
    box-shadow:
    0 0 6px white,
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5),
    -10px 0 8px rgba(255, 255, 255, 0.1); 
   z-index: 500;
    animation: shootStar 2.4s linear forwards;
    transform: rotate(var(--shoot-angle));
  }
  
  @keyframes shootStar {
  0% {
    transform: translate(0, 0) rotate(var(--shoot-angle));
    opacity: 1;
  }
  100% {
    transform:
      translateX(var(--shoot-x))
      translateY(var(--shoot-y))
      rotate(var(--shoot-angle));
    opacity: 0;
  }
}

/* Audio section */

  audio {
    display: none;
  }
  
  .custom-player {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    gap: 0.625rem;
  }
  
  .custom-player button {
    font-size: 1.875rem;
    padding: 0.625rem 1.25rem;
    margin: 0.313rem;
    border: none;
    border-radius: 1.25rem;
    background-color: #4e097c;
    color: #F8F0D9;
    box-shadow: 0 0 0.625rem #9930b0;
    cursor: pointer;
  }
  
  .custom-player button:hover {
    background-color: #b845d8;
    transform: scale(1.05);
    box-shadow: 0 0 0.938rem #f8f0d9;
  }

  .custom-player button img {
    margin-top: 0.2rem; 
  }


/* Header section */
  
header {
    position: relative;
    text-align: center;
    margin-top: 10rem;
}
  
header h1 {
  font-family: "Pacifico", cursive;
  font-size: 10vw;
  margin-bottom: 0.625rem;
  position: relative;
  margin-left: -15vw;
}
  
header p {
  font-size: 4vw;
  font-family: "Pacifico", cursive;
  position: relative;
  margin-left: -30vw;
}
  
/* Image/animation section */
  
.moon-container {
  position: relative;
  width: 7.813rem; 
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.rotating-moon {
  width: 60%;
  height: 80%;
  object-fit: contain; 
  animation: rotateMoon 35s linear infinite;
  margin-left: 16.58vw;
  margin-top: 15.63vw;
}

@keyframes rotateMoon {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.images-container {
  position: relative;
}

.images-container img[alt="little-prince"] {
    position: absolute;
    top: -65.5vw;     
    right: -35.67vw; 
    width: 20.65vw;  
}

.little-prince img {
    width: 100%;
    height: auto;
}
  
  
  /* Video */
  .video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6.25rem;
}

.video-container::before {
    content: "";
    position: absolute;
    width: 60vw;  
    height: 28vw;
    background: #7a258997;
    filter: blur(0.625rem); 
    border-radius: 0.938rem; 
    z-index: -1;
}

.netflix-video {
  width: 55.71vw; 
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.347);
}

  
  /* Menu */

  .menu {
    margin-top: 10.42rem;
  }
  
  .menu ul {
    list-style-type: none;
    text-align: center;
  }
  
  .menu li {
    margin: 2.5rem 0;
  }
  
  .menu h2 {
    font-family: "Pacifico", cursive;
    font-size: 6.77vw; 
    text-align: center; 
    margin-bottom: 5.21rem;
    color: #F8F0D9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.872);
  }

  .menu a {
    color: #F8F0D9;
    text-decoration: none;
    font-size: 2.3vw;
    display: block;
    padding: 0.5rem 0.938rem;
    background-color: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); 
  }

.menu a::before,
.menu a::after {
  content: "★"; 
  color: transparent;
  position: absolute;
  text-shadow: none;
  font-size: 2.6vw;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}

.menu a::before {
  left: 5vw; 
}

.menu a::after {
  right: 5vw; 
}


.menu a:hover::before,
.menu a:hover::after {
  color: #F8F0D9; 
}

  .menu a:hover {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    transform: scale(1.20);
  }

/* Fox */

  .sleepy-fox {
    position: fixed;
    bottom: 1.25rem; 
    right: 1.25rem;   
    width: 7rem;  
    z-index: 1000;
    animation: fox-breath 5s ease-in-out infinite;
  }
  
  .sleepy-fox img {
    width: 100%;
    height: auto;
    opacity: 0.99;
  }
  
  @keyframes fox-breath {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
  }
  
  .fox-bubble {
    position: absolute;
    bottom: 10.42rem;  
    right: 6.77rem;     
    background: rgba(255, 255, 255, 0.229);
    padding: 0.75rem 1rem;
    border-radius: 0.938rem 0.938rem 0 0.938rem;
    font-family: "Balsamiq Sans", sans-serif;
    font-size: 0.7rem;
    color: #f8f0d9;
    width: 8rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: opacity 0.5s ease;
    text-align: left;
  }


  
  /* Footer */

  .footer {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); 
    color: #F8F0D9;
    text-align: center;
    padding: 1.25rem 0;
    backdrop-filter: blur(5px); 
    margin-top: 10.42rem;
    
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 55.5rem;
    margin: auto;
    padding: 0.625rem;
}

.footer-left {
  text-align: left;
  margin-top: -8.375rem; 
}

.footer h2 {
    font-family: "Just Me Again Down Here";
    font-size: 4vw;
    margin-bottom: 3.5rem;
    margin-left: -22.44vw;
}

.contact-title {
  font-size: 2rem; 
  font-weight: bold;
  margin-left: 7.81rem;
  margin-bottom: 1.563rem;
}

.footer a {
  color: #F8F0D9;
  text-decoration: none;
  transition: color 0.5s;
}

.footer a:hover {
  color: #FFD700; 
}

.footer .footer-links a {
  display: inline-block; 
  margin-top: -4.25rem;
  margin-bottom: 1.6rem; 
  font-size: 1.58rem; 
  margin-left: 8.81rem;
}


.footer .email-link {
  font-size: 1.3rem;
  margin-left: 0;
}

.footer ul {
  margin-top: 5rem;
  list-style: none; 
  padding: 0; 
}

.footer li {
  margin: 3.125rem 0; 
}

.footer-credits {
  font-size: 0.65rem;
  text-align: center;
  opacity: 0.6;
  padding: 1vh 2vw;
  max-width: 90%;
  margin: 2vh auto 1vh;
}

/*Meeting page*/

.meeting-title{
    margin-top: -5rem;
}

.chapter-subtitle {
    display: flex;
    justify-content: center;
    font-family: "Balsamiq Sans", sans-serif;
    font-size: 2.813rem;
    margin-top: -1.25rem;
    color: #f8f0d9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.51);
  }
  
  .chapter-content {
    max-width: 83.33vw; 
    margin: 6.25rem auto; 
    padding: 1.25rem;
    font-size: 1.563rem;
    line-height: 1.8;
    font-family: "Balsamiq Sans", sans-serif;
    color: #f8f0d9;
    text-shadow: 0 0 2px #00000077;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1.25rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.3);
  }
  
  .chapter-nav {
    text-align: center;
    margin: 3.125rem auto 6.25rem;
  
  }
  
  .chapter-nav a {
    font-family: "Balsamiq Sans", sans-serif;
    font-size: 1.25rem; 
    color: #f8f0d9;
    margin: 0 1.25rem;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border: 0.125rem solid #f8f0d980;
    border-radius: 0.938rem;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, transform 0.2s;
  }
  
  .chapter-nav a:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
    color: #ffe484;
  }
  
  /*Princes' planet*/
  
  .prince-title {
    font-size: 10.42vw;  
    margin-top: -5rem;
    margin-left: -0vw;
  }
  
  /*Journey page*/
  
  .journey-title {
    font-size: 7.2vw;  
    margin-top: -5rem;
    margin-left: -1.56rem;
  }
  
  /*Earth page*/
  
  .earth-title {
    margin-top: -5rem;
    font-size: 10vw; 
    margin-left: 0vw;
  }
  
  /*Fox page*/
  
  .fox-title {
    margin-top: -5rem;
    font-size: 10vw; 
    margin-left: -10vw;
  }
  
  /*Meaning page*/
  .meaning-title {
    font-size: 9vw; 
    margin-right: 0vw;
  }
  
  /*Farewell*/
  
  .farewell-title {
    font-size: 10.42vw; 
    margin-left: -10vw;
    margin-top: -5rem;
  }
  
  /*Footer for chapters*/
  .chapterfooter {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); 
    color: #F8F0D9;
    text-align: center;
    padding: 1.25rem 0;
    backdrop-filter: blur(5px); 
    margin-top: 10.42rem;
  }
  
  .chapterfooter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 83.33vw;
    margin: auto;
    padding: 0.625rem;
  }
  
  .chapterfooter h2 {
    font-family: "Just Me Again Down Here";
    font-size: 4.69rem; 
    margin-bottom: 6.25rem; 
    margin-left: -25.27vw; 
  }
  
  .chapterfooter .footer-left {
    flex: 1;
    text-align: center;
  }
  
  .chapterfooter .chapterfooter-links ul,
  .chapterfooter .chapterfooter-center ul {
    list-style: none;
    padding: 1.563rem;
    margin: 0;
  }
  
  .chapterfooter .chapterfooter-links li,
  .chapterfooter .chapterfooter-center li {
    margin: 1.563rem 0;
  }
  
  .chapterfooter a {
    color: #F8F0D9;
    text-decoration: none;
    font-size: 1.875rem;
    transition: color 0.3s ease;
  }
  
  .chapterfooter a:hover {
    color: #FFD700;
  }
  
  .chapterfooter .chapterfooter-center {
    flex: 1;
    text-align: center;
  }
  
/*About*/

.about-header h1 {
    font-size: 4vw;
    margin-left:-5vw;
    text-align: center;
    margin-top: 0.625rem;
    font-family: "Pacifico", cursive;
    color: #f8f0d9;
  }
  
  
  .about-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem; 
    margin: 5.625rem auto;
    max-width: 90vw;
    flex-wrap: wrap;
  }
  
  .about-row.reverse {
    flex-direction: row;
  }
  
  .about-image-container {
    text-align: center;
  }
  
  .about-image-container img {
    max-width: 100%;
    border-radius: 1.25rem;
    box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.2);
  }
  
  .about-text {
    flex: 1 1 55%;
    font-size: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.952);
  }
  
  .about-text h2 {
    font-size: 3.438rem;
    margin-bottom: 0.938rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.872);
  }
  
  .about-image-container img {
    max-width: 25rem; 
    width: 90%;
    border-radius: 1.25rem;
    box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.2);
  }
  
  /*About me page*/

  .about-me, .design-process {
    max-width: 78.13vw; 
    margin: 3.75rem auto;
    padding: 1.25rem;
    text-align: center;
    color: #f8f0d9;
  }

  .behind-header h1 {
    font-size: 8vw ;
    margin-left:0vw;
    text-align: center;
    margin-top: 0.625rem;
    color: #f8f0d9;
  }
  
  .about-me h1, .design-process h1 {
    font-size: 5rem;
    font-family: "Pacifico", cursive;  
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  .about-me p, .design-process p {
    font-size: 1.875rem;
    line-height: 1.8;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  .about-me a {
    color: #FFD700; 
    text-decoration: none;
    font-weight: bold;
  }
  
  .about-me a:hover {
    color:  #f8f0d9; 
    text-decoration: underline;
  }
  
  .about-me img.portrait {
    width: 16.25rem;
    height: auto;
    border-radius: 10%;
    margin: 1.875rem auto;
    box-shadow: 0 0 0.938rem rgba(255, 255, 255, 0.2);
    display: block;
  }
  
  .image-row {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.875rem;
  }
  
  .image-row img {
    width: 11.25rem;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 0 0.75rem rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
  }
  
  .image-row img:hover {
    transform: scale(2.5);
  }
  
  /*Exploring page*/
  .planet {
    position: absolute;
    width: 18.23rem;
    text-align: center;
    animation: floatPlanet 25s ease-in-out infinite;
    cursor: pointer;
    z-index: 2;
    --planet-scale: 1;
    transition: --planet-scale 0.3s ease;
  }
  
  .exploring-title {
    font-size:7vw; 
    margin-left: -20vw;
  }

  .exploring-header p {
    font-size:2.5rem;
    margin-top: 0.5rem;
    text-align: center;
  }
  
  .planet img {
    width: 100%;
    height: auto;
    pointer-events: none;
  }
  
  .planet-label {
    margin-top: 0px;
    font-size: 0.875rem;
    color: #f8f0d9;
    font-family: "Balsamiq Sans", sans-serif;
  }
  
  .constellation-planets {
    position: relative;
    width: 100%;
    height: 135vh;
  }
  
  @keyframes floatPlanet {
    0% {
      transform: translateY(0) rotate(0deg) scale(var(--planet-scale, 1));
    }
    50% {
      transform: translateY(-30px) rotate(1deg) scale(var(--planet-scale, 1));
    }
    100% {
      transform: translateY(0) rotate(0deg) scale(var(--planet-scale, 1));
    }
  }
  
  .planet-geo {
    top: 70%;
    left: 5%;
    animation-delay: 0s;
  }
  
  .planet-king {
    top: 45%;
    left: 35%;
    animation-delay: 2s;
  }
  
  
  .planet-lamp {
    top: 20%;
    left: 15%;
    animation-delay: 4s;
  }
  
  .planet-business {
    max-width: 300px;
    top: 15%;
    left: 65%;
    animation-delay: 1s;
  }
  
  .planet-vain {
    top: 80%;
    left: 55%;
    animation-delay: 3s;
  }
  
  .planet-drunk {
    top: 55%;
    left: 80%;
    animation-delay: 5s;
  }
  
  .planet:hover {
    filter: drop-shadow(0 0 15px #fff);
  }
  
  .planet.active {
    transform: scale(1.8);
    z-index: 5;
    transition: transform 0.4s ease;
  }
  
  /* Speech bubble style above planet */
  
  .planet-bubble {
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.147);
    color: #f8f0d9;
    padding: 0.8rem 1.3rem;
    border-radius: 0.938rem;
    font-size: 0.7rem;
    font-family: "Balsamiq Sans", sans-serif;
    text-align: center;
    white-space: pre-line;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  
  .planet-bubble.active {
    opacity: 1;
  }
  
  
  /*Audio Part*/
  
  audio {
    display: none;
  }
  
  .exploringcustom-player {
    position: absolute;
    top: 1.875rem;
    left: 1.25rem;
    z-index: 1000;
    display: flex;
    gap: 0.625rem;
  }
  
  .exploringcustom-player button {
    font-family: "Just Me Again Down Here";
    font-size: 1.875rem;
    padding: 0.625rem 1.25rem;
    margin: 0.313rem;
    border: none;
    border-radius: 1.25rem;
    background-color: #4e097c;
    color: #F8F0D9;
    box-shadow: 0 0 0.625rem #9930b0;
    cursor: pointer;
  }
  
  .exploringcustom-player button:hover {
    background-color: #b845d8;
    transform: scale(1.05);
    box-shadow: 0 0 0.938rem #f8f0d9;
  }

  .exploringcustom-player button img {
    margin-top: 0.2rem; 
  }

  
  @media (max-width: 1500px) {

    .footer h2 {
      font-size: 4vw;
      margin-bottom: 3.5rem;
      margin-left: 2vw;
  }
  }

  
  @media (max-width: 1400px) {
  
    header {
      margin-top: 5.125rem;
  }
  
    header h1 {
    margin-left: -18.46vw;
  }
    
  header p {
    margin-left: -14.94vw;
  }
  
    .rotating-moon {
      width: 50%;
      margin-left: 25vw;
      margin-top: 15.63vw;
    }
  
    .images-container img[alt="little-prince"] {
      top: -60.5vw;      
  }
  
    .sleepy-fox{
      width: 5rem;
    }
  
    .fox-bubble {
      position: absolute;
      bottom: 7rem;  
      right: 4.5rem;     
      font-size: 0.875rem;
      width: 8rem;
    }
  
    .footer h2 {
      font-size: 4vw;
      margin-bottom: 3.5rem;
      margin-left: -10.44vw;
  }
  
  .chapterfooter h2 { 
    margin-left: -20.27vw; 
  }
  
  header {
    margin-top: 10rem;
  }
  

  /*Meeting page*/
  .meeting-title {
    margin-left: -10vw;
  }
  
  /*Meaning page*/
  
  .meeting-title {
    margin-left: -40vw;
  }
  
  /*About*/
  
  .about-text {
    font-size: 1.5rem;
  }

  .behind-header h1 {
    font-size: 9vw;
    margin-left: 0vw;
  }
  
  /*Exploring page*/
  
  .exploring-title {
    margin-left: -5vw;
  }
  
  .planet-business {
    top: 15%;
    left: 65%;
  }
  
  .planet-vain {
    top: 80%;
    left: 50%;
  }
  
  .planet-drunk {
    top: 53%;
    left: 73%;
  }
  
  }
  
  @media (max-width: 1300px) {
  
    .custom-player button {
      font-size: 1rem;
      padding: 0.8rem 1.25rem;
      margin: 0.313rem;
   
    }
  
    
    .sleepy-fox{
      width: 4.5rem;
      bottom: 1rem; 
      right: 1rem;  
    }
  
    .fox-bubble {
      position: absolute;
      bottom: 6rem;  
      right: 4rem;     
      font-size: 0.5rem;
      width: 5.4rem;
    }
  
  
    .exploringcustom-player button{
      font-size: 1rem;
      padding: 0.8rem 1.25rem;
      margin: 0.313rem;
    }
  
    .planet {
      width: 15rem;
    }
  
    .planet-bubble {
      font-size: 0.65rem;
      padding: 0.3rem 1rem;
    }
    
    .planet-geo {
      max-width: 280px;
      top: 70%;
      left: 5%;
      animation-delay: 0s;
    }
    
    .planet-king {
      top: 35%;
      left: 40%;
      animation-delay: 2s;
    }
    
    
    .planet-lamp {
      top: 20%;
      left: 8%;
      animation-delay: 4s;
    }
    
    .planet-business {
      max-width: 280px;
      top: 10%;
      left: 70%;
      animation-delay: 1s;
    }
    
    .planet-vain {
      top: 83%;
      left: 40%;
      animation-delay: 3s;
    }
    
    .planet-drunk {
      top: 65%;
      left: 75%;
      animation-delay: 5s;
    }
    
  /*Meaning page*/
  .meaning-title {
    font-size: 9vw; 
    margin-right: 0vw;
  }
    
  }
  
  @media (max-width: 1190px) {
  
    .footer {
      position: relative; 
      z-index: 2000;
    }
    
  }
  
  @media (max-width: 1181px) and (max-height: 821px) {
    
    .custom-player button {
      font-family: "Just Me Again Down Here";
      font-size: 1rem;
      padding: 0.8rem 1.25rem;
      margin: 0.313rem;
   
    }
  
    
    .sleepy-fox{
      width: 4.5rem;
      bottom: 1rem; 
      right: 1rem;  
    }
  
    .fox-bubble {
      position: absolute;
      bottom: 6rem;  
      right: 4rem;     
      font-size: 0.5rem;
      width: 5.4rem;
    }
  
  
  }
  
  
  @media (max-width: 1031px) {
  
    header h1 {
      margin-left: -10vw;
    }
      
    header p {
      margin-left: -10vw;
    }
  
    .sleepy-fox{
      width: 5rem;
    }
  
    .fox-bubble {
      bottom: 7rem;  
      right: 4.5rem;     
      font-size: 0.8rem;
      width: 7rem;
    }
  
    .footer {
      position: relative; 
      z-index: 2000;
    }
  
    .footer h2 {
      font-size: 4rem;
      margin-left: 0vw;
  }
  
  .footer .footer-links a {
    margin-left: -25rem;
  }
  
  .chapter-subtitle{
    margin-top: 2rem;
    font-size: 2rem;
  }
  
  .chapterfooter h2 { 
    font-size: 4rem; 
    margin-left: -3vw; 
  }
  
  .chapterfooter .chapterfooter-links ul,
  .chapterfooter .chapterfooter-center ul {
    font-size: 2rem;
    padding: 1.5rem;
  }
  
  /*Meaning page*/
  .meaning-title {
    font-size: 9vw; 
    margin-right: 0vw;
  }
  
  /*About*/
  
  .about-row.reverse {
    flex-direction: row;
    justify-content: center;
  }
  
  .about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .about-text {
    text-align: center;
  }
  
  /*About me page*/

  .behind-header h1 {
    font-size: 8vw;
    margin-left: 0vw;
  }
  
  .about-me p, .design-process p {
    font-size: 1.65rem;
  }
  
  .image-row img {
    width: 10rem;
  }
  
  /*Exploring page*/
  
  .planet {
    width: 16rem;
  }
  
  .planet-geo {
    top: 70%;
    left: 8%;
  }
  
  .planet-king {
    top: 42%;
    left: 35%;
  }
  
  
  .planet-lamp {
    top: 20%;
    left: 6%;
  }
  
  .planet-business {
    top: 15%;
    left: 55%;
  }
  
  .planet-vain {
    top: 85%;
    left: 40%;
  }
  
  .planet-drunk {
    top: 60%;
    left: 65%;
  }
  
  } 
  
  @media (max-width: 1025px) and (max-height: 769px) {
  
    .sleepy-fox{
      width: 4.5rem;
      bottom: 1rem; 
      right: 1rem;  
    }
  
    .fox-bubble {
      position: absolute;
      bottom: 6rem;  
      right: 4rem;     
      font-size: 0.5rem;
      width: 5.4rem;
    }
  
    .exploring-title {
      font-size: 8vw; 
      margin-left: 4vw;
    }

   .exploring-header p {
    font-size:2rem;
    margin-left:2.5rem ;
  }

  .planet {
    width: 13rem;
  }
  
  .planet-geo {
    top: 70%;
    left: 8%;
  }
  
  .planet-king {
    top: 42%;
    left: 35%;
  }
  
  
  .planet-lamp {
    top: 20%;
    left: 6%;
  }
  
  .planet-business {
    top: 20%;
    left: 60%;
  }
  
  .planet-vain {
    top: 87%;
    left: 40%;
  }
  
  .planet-drunk {
    top: 60%;
    left: 70%;
  }
  
}
  
  
  
  @media (max-width: 916px) and (max-height: 413px) {
  
  
    .custom-player button {
      font-size: 1rem;
      padding: 0.6rem 1rem;
      border-radius: 1rem;
      }
    
      header h1 {
        margin-left: -5vw;
      }
        
      header p {
        margin-left: -5vw;
      }
    
      .sleepy-fox{
        width: 3.5rem;
      }
    
      .fox-bubble {
        bottom: 4.8rem;  
        right: 3.3rem;     
        font-size: 0.5rem;
        width: 5.4rem;
      }
    
      .video-container {
        margin-top: 6rem;
    }
    
    .menu {
      margin-top: 8rem;
    }
    
    .menu h2 {
      font-size: 9vw; 
    }
    
    .menu a {
      font-size: 3.3vw;
    }
    
    .menu a::before {
      left: 2.5vw; 
    }
    
    .menu a::after {
      right: 2.5vw; 
    }
    
    .footer h2 {
      font-size: 3rem;
      margin-left: 10vw;
    }
    
    .footer .footer-links a {
      font-size: 1.5rem;
      margin-left: -25rem;
      line-height: 0.5rem;
    }
    
    .contact-title {
      font-size: 1.5rem; 
      font-weight: bold;
      margin-left: 10rem;
      margin-bottom: 1.3rem;
    }
    
    .footer .email-link {
      font-size: 1rem;
      margin-left: 3rem;
    }
    
    /*Meeting page*/
    
    .chapter-subtitle {
      font-size: 1.7rem;
      margin-top: 2rem;
     
    }
    
    .chapter-content {
      font-size: 1.3rem;
    }
    
    .chapterfooter a {
      font-size: 1.5rem;
    }
    
    /*About*/
    
    .about-header h1 {
      font-size: 6.5vw;
      margin-left:0vw;
    }
    
    .about-row {
      max-width: 83vw;
    }
    
    .about-image-container img {
      max-width: 40%;
   
    }
  
    .about-text {
      font-size: 1.5rem;
    }
    
    .about-text h2 {
      font-size: 2.5rem;
    }
    
    /*About me page*/
    
    .about-me p, .design-process p {
      font-size: 1.4rem;
    }
    
    .image-row img {
      width: 8rem;
    }
    
    /*Exploring page*/
    
    .exploring-title {
      font-size: 9.5vw; 
      margin-left: 0.5vw;
    }

    .exploring-header p {
      font-size:2rem;
    }
    
    .planet {
      width: 10rem;
    }
    
    .planet-label {
      font-size: 0.65rem;
    }
    
    .planet-bubble {
      font-size: 0.35rem;
      padding: 0.3rem 1rem;
    }
    
    .planet-geo {
      top: 80%;
      left: 8%;
    }
    
    .planet-king {
      top: 20%;
      left: 40%;
    }
    
    .planet-lamp {
      top: 18%;
      left: 10%;
    }
    
    .planet-business {
      top: 23%;
      left: 70%;
    }
    
    .planet-vain {
      top: 85%;
      left: 42%;
    }
    
    .planet-drunk {
      top: 75%;
      left: 73%;
    }
    
    .exploringcustom-player button {
      font-size: 1rem;
      padding: 0.6rem 1rem;
      border-radius: 1rem;
    }
  
  }

  @media (max-width: 916px){

    
    .exploring-title {
      font-size: 9.5vw; 
      margin-left: 0.5vw;
    }

    .exploring-header p {
      font-size:2rem;
    }
    
    .planet {
      width: 12rem;
    }
    
    .planet-label {
      font-size: 0.65rem;
    }
    
    .planet-bubble {
      font-size: 0.35rem;
      padding: 0.3rem 1rem;
    }
    
    .planet-geo {
      top: 70%;
      left: 8%;
    }
    
    .planet-king {
      top: 40%;
      left: 40%;
    }
    
    .planet-lamp {
      top: 15%;
      left: 10%;
    }
    
    .planet-business {
      top: 25%;
      left: 70%;
    }
    
    .planet-vain {
      top: 85%;
      left: 42%;
    }
    
    .planet-drunk {
      top: 60%;
      left: 73%;
    }
    
    .exploringcustom-player button {
      font-size: 1rem;
      padding: 0.6rem 1rem;
      border-radius: 1rem;
    }
  
  }


  
  @media (max-width: 830px) {
  
    .custom-player button {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 1rem;
    }
  
    header h1 {
      margin-left: -5vw;
    }
      
    header p {
      margin-left: -5vw;
    }
  
    .sleepy-fox{
      width: 3.5rem;
    }
  
    .fox-bubble {
      bottom: 5rem;  
      right: 3rem;     
      font-size: 0.5rem;
      width: 5.3rem;
    }
  
    .video-container {
      margin-top: 6rem;
  }
  
  .menu {
    margin-top: 8rem;
  }
  
  .menu h2 {
    font-size: 9vw; 
  }
  
  .menu a {
    font-size: 3.3vw;
  }
  
  .menu a::before {
    left: 2.5vw; 
  }
  
  .menu a::after {
    right: 2.5vw; 
  }
  
  .footer h2 {
    font-size: 3rem;
    margin-left: 10vw;
  }
  
  .footer .footer-links a {
    font-size: 1.5rem;
    margin-left: -25rem;
    line-height: 0.5rem;
  }
  
  .contact-title {
    font-size: 1.5rem; 
    font-weight: bold;
    margin-left: 10rem;
    margin-bottom: 1.3rem;
  }
  
  .footer .email-link {
    font-size: 1rem;
    margin-left: 3rem;
  }
  
  /*Meeting page*/
  
  .chapter-subtitle {
    font-size: 1.7rem;
    margin-top: 2rem;
  
  }
  
  .chapter-content {
    font-size: 1.3rem;
  }
  
  .chapterfooter a {
    font-size: 1.5rem;
  }
  
  /*About*/
  
  .about-header h1 {
    font-size: 6vw;
    margin-left: 0vw;
    padding: auto;
  }
  
  .about-row {
    max-width: 70vw;
  }
  
  .about-text {
    font-size: 1.5rem;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
  }
  
  /*About me page*/
  
  .about-me p, .design-process p {
    font-size: 1.5rem;
  }
  
  .image-row img {
    width: 8rem;
  }
  
  /*Exploring page*/
  
  .exploring-title {
    font-size: 7vw; 
    margin-left: 4vw;
  }

  .exploring-header p {
    font-size:2rem;
  }
  
  .planet {
    width: 14.5rem;
  }
  
  .planet-label {
    font-size: 0.65rem;
  }
  
  .planet-bubble {
    font-size: 0.5rem;
    padding: 0.5rem 1.3rem;
  }
  
  .planet-geo {
    top: 70%;
    left: 8%;
  }
  
  .planet-king {
    top: 42%;
    left: 40%;
  }
  
  .planet-lamp {
    top: 20%;
    left: 10%;
  }
  
  .planet-business {
    top: 12%;
    left: 55%;
  }
  
  .planet-vain {
    top: 88%;
    left: 40%;
  }
  
  .planet-drunk {
    top: 65%;
    left: 62%;
  }
  
  .exploringcustom-player button {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 1rem;
  }

  .earth-title {
    font-size: 8vw; 
  }
}

  @media (max-width: 769px) {
  
    .fox-bubble {
      bottom: 5rem;  
      right: 3rem;     
      font-size: 0.5rem;
      padding: 0.6rem 0.5rem;
      width: 5rem;
    }
  
    .chapterfooter h2 { 
      font-size: 3rem; 
      margin-left: 0vw; 
    }
  
    .chapterfooter a {
      font-size: 1.3rem;
    }
    
    .chapter-nav a {
      font-size: 1rem; 
      margin: 5 1rem;
    }
  
    .planet-king {
      top: 42%;
      left: 38%;
    }
  
    .planet-vain {
      top: 89%;
      left: 40%;
    }
  
    .footer h2 {
      font-size: 3rem;
      margin-left: 6vw;
    }
    
    .footer .footer-links a {
      font-size: 1.5rem;
      margin-left: -25rem;
      line-height: 0.5rem;
    }
    
    .contact-title {
      margin-left: 8rem;
      font-size: 1rem; 
    }
    
    .footer .email-link {
      font-size: 1rem;
      margin-left: 3rem;
    }

    .behind-header h1 {
      font-size: 8.5vw;
    }
  
  }
  
  @media (max-width: 741px) and (max-height: 361px) {
  
    /*Exploring page*/
    
    .planet {
      width: 8rem;
    }
    
    .planet-label {
      font-size: 0.65rem;
    }
    
    .planet-bubble {
      font-size: 0.35rem;
      padding: 0.3rem 1rem;
    }
    
    .planet-geo {
      top: 80%;
      left: 8%;
    }
    
    .planet-king {
      top: 20%;
      left: 40%;
    }
    
    .planet-lamp {
      top: 18%;
      left: 10%;
    }
    
    .planet-business {
      top: 23%;
      left: 70%;
    }
    
    .planet-vain {
      top: 85%;
      left: 42%;
    }
    
    .planet-drunk {
      top: 75%;
      left: 73%;
    }
  
  }
  @media (max-width: 670px){
  
  .footer h2 {
      font-size: 8vw;
      margin-bottom: 3.5rem;
      margin-left: 5vw;
  }
  
  .contact-title {
    font-size: 1rem; 
    margin-left: 7.81rem;
    margin-bottom: 1.563rem;
  }
  
  
  .footer .footer-links a {
    display: inline-block; 
    margin-top: -4.25rem;
    margin-bottom: 1.6rem; 
    font-size: 1rem; 
    margin-left: -15rem;
  }
  
  
  .footer .email-link {
    font-size: 0.8rem;
    margin-left: 3rem;
  }
  
  .footer ul {
    margin-top: 5rem;
    list-style: none; 
    padding: 0; 
  }
  
  .footer li {
    margin: 3.125rem 0; 
  }
  
  .footer-credits {
    font-size: 0.65rem;
    text-align: center;
    opacity: 0.6;
    padding: 1vh 2vw;
    max-width: 90%;
    margin: 2vh auto 1vh;
  }

  .planet {
    width: 7.5rem;
  }
  
  .planet-label {
    font-size: 0.6rem;
  }
  
  .planet-bubble {
    font-size: 0.3rem;
    padding: 0.3rem 1rem;
  }
  
  .planet-geo {
    top: 80%;
    left: 8%;
  }
  
  .planet-king {
    top: 20%;
    left: 40%;
  }
  
  .planet-lamp {
    top: 18%;
    left: 10%;
  }
  
  .planet-business {
    top: 23%;
    left: 70%;
  }
  
  .planet-vain {
    top: 85%;
    left: 42%;
  }
  
  .planet-drunk {
    top: 75%;
    left: 73%;
  }
  
  }
  
  
  @media (max-width: 510px){
  
    .sleepy-fox{
      width: 3rem;
      bottom: 1rem; 
      right: 1rem;  
    }
  
    .fox-bubble {
      bottom: 4.2rem;  
      right: 2.5rem;     
      font-size: 0.32rem;
      padding: 0.5rem 0.6rem;
      width: 3.2rem;
    }

    .chapter-nav {
      margin: 4rem auto 2rem auto;
      flex-direction: column-reverse;
      align-items: center;
      display: flex;
      justify-content: center;
      gap: 7rem;
      flex-wrap: wrap;
    }
  
  }
  
  @media (max-width: 431px) and (max-height: 933px) {
  
    .language-switch {
      top: 2.5rem;
      right: 1rem;
      font-size: 1rem;
      z-index: 999;
    }
  
    html, body {
      overflow-x: hidden;
    }
  
    .custom-player button {
      font-size: 0.6rem;
      padding: 0.5rem 0.8rem;
      margin: 0.05rem;
      }
    
    header h1 {
        font-size: 10vw;
        margin-bottom: 0.625rem;
        margin-left: 0vw;
      }
        
    header p {
        font-size: 4vw;
        margin-left: 0vw;
      }
  
    .rotating-moon {
        width: 70%;
        margin-left: 16.5vw;
        margin-top: 35vw;
      }
  
    .images-container img[alt="little-prince"] {
        top: -95vw;     
        right: -35.67vw; 
        width: 25vw;  
    }
    
     
    .video-container {
        margin-top: 6rem;
    }
  
    .netflix-video {
      width: 70vw;
    }
  
    .menu {
      margin-top: 8rem;
    }
  
    .menu li {
      margin: 2.5rem 0;
    }
  
    .menu h2 {
      font-size: 10vw; 
    }
  
    .menu a {
      font-size: 5vw;
      padding: 0.5rem 1.938rem;
    }
  
    .menu a::before {
      left: 3vw; 
    }
    
    .menu a::after {
      right: 3vw; 
    }
  
    .sleepy-fox,
    .fox-bubble {
      display: none !important;
    }
    
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .footer {
      padding: 1.5rem 1rem;
      margin-top: 8vh;
    }
  
  
    .footer-left,
    .footer-center,
    .footer-links {
      text-align: center;
      margin: 0 auto;
      width: 100%;
    }
  
    .footer-center{
    margin-top: 0vh;
    margin-left: 28vw;
  
    }
  
    .footer h2 {
      font-size: 13.5vw;
      margin-left: 0vw;
      margin-bottom: 3rem;
    }
  
    .contact-title {
      display: flex;
      align-items: center;
      font-size: 6vw;
      margin-bottom: 1rem;
      margin-left: 8.5rem;
    }
  
    .footer a,
    .footer .email-link {
      font-size: 4.5vw;
      margin: 0.5rem 0;
    }
  
  
  .footer-credits {
    font-size: 1.5vw;
    max-width: 100%;
    margin: 0.3rem auto;
  }
  
  /*About*/
  
  .about-row {
    max-width: 93vw;
  }
  
  .about-header h1 {
    font-size: 6.5vw;
    margin-left:0vw;
  }
  
  .about-text {
    font-size: 0.97rem;
  }
  
  .about-text h2 {
    font-size: 1.5rem;
  }
  
  .about-image-container img {
    max-width: 25rem; 
    width: 70%;
  }
  
  /*About me page*/
  
  .behind-header h1 {
    font-size: 8vw;
  }
  
  .about-me, .design-process {
    max-width: 90vw; 
  }
  
  .about-me h1, .design-process h1 {
    font-size: 3rem;
  }
  
  .about-me p, .design-process p {
    font-size: 1rem;
  }
  
  .about-me img.portrait {
    width: 10rem;
  }
  
  .image-row img:hover {
    transform: scale(1.8);
  }
  
  
  /*Exploring page*/
  
  .exploringcustom-player button {
    font-size: 0.3rem;
    padding: 0.5rem 0.8rem;
    margin: 0.05rem;
    }
  
    .exploring-title {
      font-size: 8vw !important; 
      margin-left: 4vw;
    }

    .exploring-header p {
      font-size:0.8rem;
      margin-left: -2vw;
    }

    .planet-label, .planet-title, .planet-subtitle {
      font-family: "Balsamiq Sans", sans-serif;
    }
    
    .planet {
      width: 10rem;
    }
    
    .planet-label {
      font-size: 0.4rem;
    }
    
    .planet-bubble {
      font-size: 0.4rem;
      padding: 0.3rem 1rem;
    }
    
    .planet-geo {
      top: 55%;
      left: 10%;
    }
    
    .planet-king {
      top: 45%;
      left: 50%;
    }
    
    .planet-lamp {
      top: 20%;
      left: 10%;
    }
    
    .planet-business {
      top: 18%;
      left: 52%;
    }
    
    .planet-vain {
      top: 85%;
      left: 8%;
    }
    
    .planet-drunk {
      top:75%;
      left: 50%;
    }
  
  /*Meeting page*/
  
  .chapter-title{
    font-size: 18vw; 
    margin-left: -5vw;
  }
  
  .chapter-subtitle {
    font-size: 1.5rem;
  }
  
  .chapter-content {
    max-width: 85vw; 
    margin: 3rem auto; 
    font-size: 1rem;
  }
  
  .chapter-nav {
    margin: 4rem auto 2rem auto !important;
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 7rem;
    flex-wrap: wrap;
  }
  
  .chapter-nav a {
    font-size: 1rem !important;
  }
  
  
  /*Princes' planet*/
  
  .prince-title {
    font-size: 13vw;  
    margin-left: 0vw;
  }
  
  .chapter-nav {
    margin: 0.5rem auto 1rem;
  }
  
  .chapter-nav a {
    font-size: 0.5rem; 
    margin: 2 1rem;
  }
  
  /*Journey page*/
  
  .journey-title {
    font-size: 10vw;  
    margin-left: 0vw;
  }
  
  /*Earth page*/
  
  .earth-title {
    font-size: 13vw;  
    margin-left: 0vw;
  }
  
  .chapter-nav {
    margin: 0.5rem auto 1rem;
  }
  
  .chapter-nav a {
    font-size: 0.47rem; 
    margin: 2 1rem;
  }
  
  /*Fox page*/
  
  .fox-title {
    font-size: 13vw;  
    margin-left: 0vw;
  }
  
  /*Meaning page*/
  .meaning-title {
    font-size: 12vw;  
    margin-left: 0vw;
  }
  
  /*Farewell*/
  
  .farewell-title {
    font-size: 13vw;  
    margin-left: 0vw;
  }
  
  .chapterfooter-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .chapterfooter .footer-left,
  .chapterfooter .chapterfooter-center {
    text-align: center;
    margin: 0;
    margin-bottom: 2rem;
    margin-top: -2rem;
  }
  
  .chapterfooter h2 {
    margin-top: 2rem;
    font-size: 3rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .chapterfooter .chapterfooter-links ul,
  .chapterfooter .chapterfooter-center ul {
    padding: 0;
    margin: 0;
  }
  
  .chapterfooter .chapterfooter-links li,
  .chapterfooter .chapterfooter-center li {
    margin: 1rem 0;
  }
  
  .chapterfooter a {
    font-size: 1.2rem;
  }
  
  }
  
  
  @media (max-width: 415px) {
  
    html, body {
      overflow-x: hidden;
    }
  
    .custom-player button {
      font-size: 0.6rem;
      padding: 0.5rem 0.8rem;
      margin: 0.05rem;
      }
    
    header h1 {
        font-size: 10vw;
        margin-bottom: 0.625rem;
        margin-left: 0vw;
      }
        
    header p {
        font-size: 4vw;
        margin-left: 0vw;
      }
  
    .rotating-moon {
        width: 70%;
        margin-left: 16.5vw;
        margin-top: 35vw;
      }
  
    .images-container img[alt="little-prince"] {
        top: -95vw;     
        right: -35.67vw; 
        width: 25vw;  
    }
    
     
    .video-container {
        margin-top: 6rem;
    }
  
    .netflix-video {
      width: 70vw;
    }
  
    .menu {
      margin-top: 8rem;
    }
  
    .menu li {
      margin: 2.5rem 0;
    }
  
    .menu h2 {
      font-size: 10vw; 
    }
  
    .menu a {
      font-size: 5vw;
      padding: 0.5rem 1.938rem;
    }
  
    .menu a::before {
      left: 3vw; 
    }
    
    .menu a::after {
      right: 3vw; 
    }
  
    .sleepy-fox,
    .fox-bubble {
      display: none !important;
    }
  
    
     
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .footer {
      padding: 1.5rem 1rem;
      margin-top: 8vh;
    }
  
  
    .footer-left,
    .footer-center,
    .footer-links {
      text-align: center;
      margin: 0 auto;
      width: 100%;
    }
  
    .footer-center{
    margin-top: 0vh;
    margin-left: 28vw;
  
    }
  
    .footer h2 {
      font-size: 13.5vw;
      margin-left: 0vw;
      margin-bottom: 3rem;
    }
  
    .contact-title {
      display: flex;
      align-items: center;
      font-size: 6vw;
      margin-bottom: 1rem;
      margin-left: 8.5rem;
    }
  
  /*About*/
  
  .about-row {
    max-width: 93vw;
  }
  
  .about-header h1 {
    font-size: 6.5vw;
    margin-left:0vw;
  }
  
  .about-text {
    font-size: 0.97rem;
  }
  
  .about-text h2 {
    font-size: 1.5rem;
  }
  
  .about-image-container img {
    max-width: 25rem; 
    width: 70%;
  }
  
  /*About me page*/
  
  .behind-header h1 {
    font-size: 8vw;
  }
  
  .about-me, .design-process {
    max-width: 90vw; 
  }
  
  .about-me h1, .design-process h1 {
    font-size: 3rem;
  }
  
  .about-me p, .design-process p {
    font-size: 1rem;
  }
  
  .about-me img.portrait {
    width: 10rem;
  }
  
  .image-row img:hover {
    transform: scale(1.8);
  }
  
  
  /*Exploring page*/
  
  .exploringcustom-player button {
    font-size: 0.6rem;
    padding: 0.5rem 0.8rem;
    margin: 0.05rem;
    }
  
    .exploring-title {
      font-size: 6vw; 
      margin-left: 4vw;
    }

    .exploring-header p {
      font-size:1rem;
    }
    
    .planet {
      width: 10rem;
    }
    
    .planet-label {
      font-size: 0.4rem;
    }
    
    .planet-bubble {
      font-size: 0.4rem;
      padding: 0.3rem 1rem;
    }
    
    .planet-geo {
      top: 55%;
      left: 10%;
    }
    
    .planet-king {
      top: 40%;
      left: 50%;
    }
    
    .planet-lamp {
      top: 20%;
      left: 10%;
    }
    
    .planet-business {
      top: 13%;
      left: 52%;
    }
    
    .planet-vain {
      top: 88%;
      left: 20%;
    }
    
    .planet-drunk {
      top: 68%;
      left: 50%;
    }
  
  /*Meeting page*/
  
  .chapter-title{
    font-size: 18vw; 
    margin-left: -5vw;
  }
  
  .chapter-subtitle {
    font-size: 1.5rem;
  }
  
  .chapter-content {
    max-width: 85vw; 
    margin: 3rem auto; 
    font-size: 1rem;
  }
  
  .chapter-nav {
    margin: 4rem auto 2rem auto !important;
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 7rem;
    flex-wrap: wrap;
  }
  
  .chapter-nav a {
    font-size: 1rem !important;
  }
  
  
  /*Princes' planet*/
  
  .prince-title {
    font-size: 10vw;  
    margin-left: 0vw;
  }
  
  .chapter-nav {
    margin: 0.5rem auto 1rem;
  }
  
  .chapter-nav a {
    font-size: 0.5rem; 
    margin: 2 1rem;
  }
  
  /*Journey page*/
  
  .journey-title {
    font-size: 6.9vw;  
    margin-left: 0vw;
  }
  
  /*Earth page*/
  
  .earth-title {
    font-size: 8vw;  
    margin-left: 0vw;
  }
  
  .chapter-nav {
    margin: 0.5rem auto 1rem;
  }
  
  .chapter-nav a {
    font-size: 0.47rem; 
    margin: 2 1rem;
  }
  
  /*Fox page*/
  
  .fox-title {
    font-size: 13vw;  
    margin-left: 0vw;
  }
  
  /*Meaning page*/
  .meaning-title {
    font-size: 12vw;  
    margin-left: 0vw;
  }
  
  /*Farewell*/
  
  .farewell-title {
    font-size: 13vw;  
    margin-left: 0vw;
  }
  
  .chapterfooter-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .chapterfooter .footer-left,
  .chapterfooter .chapterfooter-center {
    text-align: center;
    margin: 0;
    margin-bottom: 2rem;
    margin-top: -2rem;
  }
  
  .chapterfooter h2 {
    margin-top: 2rem;
    font-size: 3rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .chapterfooter .chapterfooter-links ul,
  .chapterfooter .chapterfooter-center ul {
    padding: 0;
    margin: 0;
  }
  
  .chapterfooter .chapterfooter-links li,
  .chapterfooter .chapterfooter-center li {
    margin: 1rem 0;
  }
  
  .chapterfooter a {
    font-size: 1.2rem;
  }
  
  }
  
  @media (max-width:400px){
    
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .footer {
      padding: 1.5rem 1rem;
      margin-top: 8vh;
    }
  
  
    .footer-left,
    .footer-center,
    .footer-links {
      text-align: center;
      margin: 0 auto;
      width: 100%;
    }
  
    .footer-center{
    margin-top: 0vh;
    margin-left: 30vw;
  
    }
  
    .footer h2 {
      font-size: 13.5vw;
      margin-left: 0vw;
      margin-bottom: 3rem;
    }
  
    .contact-title {
      display: flex;
      align-items: center;
      font-size: 6vw;
      margin-bottom: 1rem;
      margin-left: 7.5rem;
    }
  }
  
  @media (max-width:380px) {
  
    header h1 {
      font-size: 10vw;
    }
      
    header p {
      font-size: 5vw;
    }
  
    header {
      margin-top: 5rem;
  }
  
   .rotating-moon {
      width: 80%;
      height: 100%;
      margin-left: 10vw;
      margin-top: 65vw;
    }
  
    .images-container img[alt="little-prince"] {
      position: absolute;
      top: -125vw;     
      right: -40vw; 
      width: 40vw;  
  }
  
    .video-container {
      margin-top: 5rem;
  }
  
    
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .footer {
      padding: 1.5rem 1rem;
      margin-top: 8vh;
    }
  
  
    .footer-left,
    .footer-center,
    .footer-links {
      text-align: center;
      margin: 0 auto;
      width: 100%;
    }
  
    .footer-center{
    margin-top: 0vh;
    margin-left: 35vw;
  
    }
  
    .footer h2 {
      font-size: 13.5vw;
      margin-left: 2vw;
      margin-bottom: 3rem;
    }
  
    .contact-title {
      display: flex;
      align-items: center;
      font-size: 6vw;
      margin-bottom: 1rem;
      margin-left: 7rem;
    }
  
    /*About me page*/
  
    .about-me p, .design-process p {
      font-size: 0.8rem;
    }
  
    .image-row img:hover {
      transform: scale(1.5);
    }
  
  /*Exploring page*/
  
  .exploringcustom-player button {
    font-size: 0.6rem;
    padding: 0.5rem 0.8rem;
    margin: 0.05rem;
    }
  
    .exploring-title {
      font-size: 13vw !important; 
    }
  
    .exploring-header p{
      font-size: 1.5rem;
    }
  
  .planet {
    width: 8rem;
  }
  
  
  .planet-bubble {
    font-size: 0.3rem;
    padding: 0.3rem 1rem;
  }
  
  .planet-king {
    top: 40%;
    left: 50%;
  }
  
  /*Meeting page*/
  
  .chapter-title{
    font-size: 15vw; 
    margin-left: 0vw;
  }
  
  .chapter-subtitle {
    font-size: 1rem;
  }
  
  .chapter-content {
    max-width: 85vw; 
    margin: 3rem auto; 
    font-size: 1rem;
  }
  
  .chapter-nav {
    margin: 1rem auto 1rem auto !important;
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
  }
  
  .chapter-nav a {
    font-size: 0.8rem !important;
  }
  
  /*Meaning page*/
  
  .meaning-title {
    font-size: 12vw;  
    margin-left: 0vw;
  }
  
  /*Fox page*/
  .fox-title {
    margin-left: 1vw;
  }
  
  /*Journey page*/
  
  .journey-title {
    font-size: 10vw;  
    margin-left: 0vw;
  }
  
  .chapterfooter h2 {
    margin-top: 2rem;
    font-size: 2.8rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  }
  
  @media (max-width: 376px) and (max-height: 670px) {

    .meeting-title{
      font-size: 10vw;  
      margin-top: 0rem;
      margin-left: 0vw;
  }

    .prince-title {
      font-size: 8vw;  
      margin-top: 0rem;
      margin-left: 0vw;
    }

    .journey-title {
      font-size: 6.5vw;  
      margin-top: 0rem;
      margin-left: 0vw;
    }

    .earth-title {
      font-size: 8vw;  
      margin-top: 0rem;
      margin-left: 0vw;
    }

    .fox-title {
      font-size: 10vw;  
      margin-top: 0rem;
      margin-left: 0vw;
    }

    .meaning-title {
      font-size: 9vw; 
      margin-right: 0vw;
    }

    .farewell-title {
      font-size: 10vw;  
      margin-top: 0rem;
      margin-left: 0vw;
    }
  
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .footer {
      padding: 1.5rem 1rem;
      margin-top: 8vh;
    }
  
  
    .footer-left,
    .footer-center,
    .footer-links {
      text-align: center;
      margin: 0 auto;
      width: 100%;
    }
  
    .footer-center{
    margin-top: 0vh;
    margin-left: 32vw;
  
    }
  
    .footer h2 {
      font-size: 13.5vw;
      margin-left: 2vw;
      margin-bottom: 3rem;
    }
  
    .contact-title {
      display: flex;
      align-items: center;
      font-size: 6vw;
      margin-bottom: 1rem;
      margin-left: 7.5rem;
    }
  
    
  
    .planet-geo {
      top: 55%;
      left: 10%;
    }
    
    .planet-king {
      top: 42%;
      left: 51%;
    }
    
    .planet-lamp {
      top: 20%;
      left: 10%;
    }
    
    .planet-business {
      top: 13%;
      left: 55%;
    }
    
    .planet-vain {
      top: 85%;
      left: 17%;
    }
    
    .planet-drunk {
      top: 70%;
      left: 55%;
    }
  
  }