CSS
body {
  font-family: 'Courier New', Courier, monospace;
  width: auto;
  
  margin: 0 auto;
}


.text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1;
}

.header {
  font-family: Amatic SC, sans-serif;
  font-size: 120px;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 0px;
  transition: transform 0.9s ease-in-out;
}

.container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 2px; /* Adjust the value to set the desired distance */
  max-height: calc(100vh - 240px); /* Adjust the value to leave space for shaking image and header */
  overflow-y: auto;
  padding-top: 1px; /* Adjust the value to set the desired distance */
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 25px;
  margin-top: 20px;
  margin-bottom: 40px;
  z-index: 1;
  
}


#image {
  width: 5%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: 4vh;
  margin-bottom: 4vh;
}

#welcomeImage {
  width: 10%;
}

.container::-webkit-scrollbar {
  width: 8px; /* Adjust the width as needed */
}

.container::-webkit-scrollbar-track {
  background-color: transparent;
}

.container::-webkit-scrollbar-thumb {
  background-color: transparent;
}



@keyframes shake {
  0% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px) rotate(-5deg); }
  20%, 40%, 60%, 80% { transform: translateX(10px) rotate(5deg); }
  100% { transform: translateX(0) rotate(0); }
}

.shaking {
  animation: shake 0.7s;
}

.hidden {
  display: none;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.fixed {
  position: fixed;
  left: 0;
  width: 100%;
}

.move-left {
  position: fixed;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-40%);
  transition: transform 1s ease-in-out;
}

.fixed.move-left {
  transform: translateX(-100%); /* Adjust the value as needed */
}

#contentPage {
  padding-top: 20px; /* Adjust the value to leave space for the header */
}

iframe {
  width: 100%;
  height: 60vh;
  aspect-ratio: 16/9; /* Set the aspect ratio to 16:9 for YouTube videos and Spotify playlists */
}


.spotify-song-iframe {
  max-width: 800px; /* Adjust the value to set the desired width for Spotify songs */
  width: 100%;
  height: 225px;
    border: none; /* Add this line to remove the border */
  outline: none; /* Add this line to remove the outline */
}


.video-iframe {
  width: 100%;
  height: 60vh; /* Adjust the value to set the desired height for videos */
  aspect-ratio: 16/9; /* Set the aspect ratio to 16:9 for YouTube videos and Spotify playlists */
  border: none; /* Add this line to remove the border */
  outline: none; /* Add this line to remove the outline */
}

.responsive-image {
  max-width: 100%;
  height: auto;
}

.text-image .responsive-image {
  max-width: 100%;
  height: auto;
  width: auto;
}

.playlist-iframe {
  max-width: 600px; /* Adjust the value to set the desired width */
  width: 100%;
  height: 480px;
  border: none; /* Add this line to remove the border */
  outline: none; /* Add this line to remove the outline */
}

.text-playlist .playlist-iframe {
  max-width: 800px; /* Adjust the value to set the desired width */
  width: 100%;
  height: 480px;
  border: none; /* Add this line to remove the border */
  outline: none; /* Add this line to remove the outline */
  margin: 0 auto;
}

.streetview-iframe {
  max-width: 800px; /* Adjust the value to set the desired width */
  width: 100%;
  height: 400px; /* Adjust the height as needed */
  display: flex;
  justify-content: center;
  margin: 0 auto;
  
  }

 
.responsive-video {
  width: 100%;
  height: 50vh;
  padding-bottom: 56.25%; /* Set the aspect ratio to 16:9 (9 divided by 16) */
  margin: 0 auto;
  max-width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  max-height: none; /* Remove the max-height property */
}

@media only screen and (max-width: 300px) {

  #image {
    width: 50%;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    margin-top: 4vh !important;
    margin-bottom: 4vh !important;
  } 

  #welcomeImage {
    width: 200%;
    height: auto !important;
  }
 
  .center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    width: 100% !important;
    top: 25px;
    margin-top: 20px !important;
    margin-bottom: 40px !important;
    z-index: 1;
  }
  
  .header {
    font-family: Amatic SC, sans-serif;
    font-size: 600%;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0px;
   
  }



  .video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hidden {
    display: none;
  }
}

@media only screen and (min-width: 301px) and (max-width: 800px) {
  #image {
    width: 27%;
  }

  #welcomeImage {
    width: 45%;
  }

  .spotify-song-container {
    max-width: 100%; /* Adjust the value to set the desired width for smaller screens */
  }

  .spotify-song iframe {
    height: 40px; /* Adjust the value to set the desired height for smaller screens */
  }
 
  .video-iframe {
    width: 100vw;
    height: calc(100vw * 9 / 16);
    max-width: none;
  }

 }