
/* Style the buttons that are used to open and close the accordion panel */
/*.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
 
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  /* Style the accordion panel. Note: hidden by default *

  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }*/

  .accordion {
    background-color: transparent;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    font-family:'Earth','Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ;
  }
  .accordianGroup{
    display: flex;
    flex-direction: column;
  }
  
  .active, .accordion:hover {
    background-color:rgb(214, 253, 240); 
  }
  
  .panel {
    padding: 0 18px;
    display: none;
    background-color: rgb(184, 253, 255);

    overflow: hidden;
  }

  .section {
    width: 100%;
    height: 300px; /* Set the fixed height of the section */
    overflow-x: scroll; /* Enable horizontal scrolling */
    overflow-y: hidden;
    font-family:'Earth 2073','Times New Roman', Times, serif;
}
.section::-webkit-scrollbar {
    display: none;
  }
  
  .wrapper {
    display: flex;
    height: 100%;
  }
  
  .cell {
    flex-shrink: 0;
    min-width: 300px; /* Set the width of each cell */
    height: 100%;
    background-color:transparent;
    margin-right: 10px; /* Add some space between cells */
    max-width: 500px;
  }
  .cell-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cell-video {
    top: 0;
    left: 0;
    width:auto;
    height: 400px;
    object-fit: cover;
  }

  ol {
    max-width: 600px;
    }

ol li {
max-width: 500px;
margin: 0 auto;
}




.svg-container{
  display:flex;

  width: 30vh;
  height: auto;
  margin: 0;
  padding-left: 40vw;
  padding-right: 10vw;
  
}

svg{
  background-image: url(Earth_Western_Hemisphere_transparent_background.png);
  background-size: cover;
}


#path{
  fill:none;
  stroke:azure;
  stroke-width: 0px;
}

circle{
  fill: whitesmoke;
  opacity:calc(40%)
}