 html,
 body {
   margin: 0;
   padding: 0;
   height: 100%;
   overflow: hidden;
 }

 html {
   background: #0385ff;
 }

 body {
   display: flex;
   flex-direction: column;
   background: #ffffff;
   background: linear-gradient(147deg, rgb(255, 255, 255) 9%, #ffffff 53%);
   color: #fff;
   overflow: hidden;
 }

 main {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   flex: 1 1 auto;
   overflow: hidden;
 }

 .scene {
   width: 600px;
   height: 600px;
   margin: 0 auto;
   perspective: 1000px;
 }

 .wrapper {
   width: 100%;
   height: 100%;
   transform: rotateX(45deg) rotateY(45deg);
   transform-style: preserve-3d;
   align-items: center;

 }

 .sphere {
   position: relative;
   width: 70%;
   height: 70%;
   margin: 0 auto;
   transform-style: preserve-3d;
   animation: rotate 20s infinite linear;
 }

 .line {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: 50%;
   border: 1px;
   border-style: dotted;
   border-color: #ff0000;
   box-shadow: 1px 0px 20px -2px rgb(0, 255, 251), 1px 0px 50px -2px #6207ff;
 }


 @keyframes rotate {
   to {
     transform: rotateX(360deg) rotateY(360deg);
   }
 }

 /*code of conduct (dancers etiquete)*/
 .page {
  width: 100%;
  max-height: 100vh;
  overflow: auto;
  margin: auto;
}

.dancers {
  width: 100%;
  margin-bottom: 4rem;
}

/*  about page styles  */

.about-info {
  text-indent: 2rem;
  margin: auto;
  width: 97%;
  height: auto;
  color: #000000;
  line-height: 1.3rem;
  text-align: start;
  font-size: 1.1rem;
  font-family: monospace;
  font-weight: 500;
  overflow-y: auto;
}

 /*start of hamburger code*/

 body {
   margin: 0;
   padding: 0;

   /* make it look decent enough */
   background: #fffdfd;
   color: #b1b1b1;
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
 }

 #menuToggle {
   display: block;
   position: relative;
   top: 50px;
   left: 50px;
   z-index: 1;

   -webkit-user-select: none;
   user-select: none;
 }

 #menuToggle a {
   text-decoration: none;
   color: #000000;

   transition: color 0.3s ease;
 }

 #menuToggle a:hover {
   color: rgb(61, 51, 255);
   font-size: 1.2rem;
 }


 #menuToggle input {
   display: block;
   width: 40px;
   height: 32px;
   position: absolute;
   top: -7px;
   left: -5px;

   cursor: pointer;

   opacity: 0;
   /* hide this */
   z-index: 2;
   /* and place it over the hamburger */

   -webkit-touch-callout: none;
 }

 /*
  * Just a quick hamburger
  */
 #menuToggle span {
   display: block;
   width: 33px;
   height: 4px;
   margin-bottom: 5px;
   position: relative;

   background: #2d2d2d;
   border-radius: 3px;

   z-index: 1;

   transform-origin: 4px 0px;

   transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
     background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
     opacity 0.55s ease;
 }

 #menuToggle span:first-child {
   transform-origin: 0% 0%;
 }

 #menuToggle span:nth-last-child(2) {
   transform-origin: 0% 100%;
 }

 /* 
  * Transform all the slices of hamburger
  * into a crossmark.
  */
 #menuToggle input:checked~span {
   opacity: 1;
   transform: rotate(45deg) translate(-2px, -1px);
   background: #232323;
 }

 /*
  * But let's hide the middle one.
  */
 #menuToggle input:checked~span:nth-last-child(3) {
   opacity: 0;
   transform: rotate(0deg) scale(0.2, 0.2);
 }

 /*
  * Ohyeah and the last one should go the other direction
  */
 #menuToggle input:checked~span:nth-last-child(2) {
   transform: rotate(-45deg) translate(0, -1px);
 }

 /*
  * Make this absolute positioned
  * at the top left of the screen
  */
 #menu {
   position: absolute;
   width: 300px;
   margin: -100px 0 0 -50px;
   padding: 50px;
   padding-top: 125px;
   border-bottom-right-radius: 2rem;
   border-bottom-left-radius: 2rem;

   background-color: rgba(57, 62, 44, 0.256);

   list-style-type: none;
   -webkit-font-smoothing: antialiased;
   /* to stop flickering of text in safari */

   transform-origin: 0% 0%;
   transform: translate(-100%, 0);

   transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
 }

 #menu li {
   padding: 10px 0;
   font-size: 22px;
   
 }

 /*
  * And let's slide it in from the left
  */
 #menuToggle input:checked~ul {
   transform: none;
 }

 /*media queries*/

 @media only screen and (max-width: 450px) {
   .scene .wrapper img {
     padding-right: 10;
     height: 18rem;
     max-width: 28rem;
   }
 }

 /* modal content */

 /* Add your preferred CSS styling for the modal and other elements here */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
 
  
}

.modal-content {
  background-color: #f7f7f7;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid hsl(207, 95%, 49%);
  width: 80%;
  border-radius: 2rem;
  
}


.close {
  color: #606060;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
