/* import theme */

 /* button back on when pop up */
 *[onclick] {
    cursor: pointer;
  }

  #theme-center {
    position: absolute;
    min-height: 130%;
    min-width: 100%;
    fill: rgb(70, 66, 66);
    background-color: rgba(50, 51, 50, 0.5); /* Green background with 50% opacity */
  }

  .back_themeArea {
    display: flex;
    margin-top: 67px;
    flex-direction: column;
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
}

#left-wing {
    align-self: flex-start; /* Align < back to the start */
    margin-bottom: auto; /* Push it to the top */
    margin-left: 50px;
    cursor: pointer; /* Make it look clickable */
}


  
  #theme-area{
    margin-top: 1rem;
    padding: 1.4rem 1rem;
    border-radius: 0.4rem;
    background: #eaeaea;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 38vh;
    width: 100rem;

  }
  
  .theme-button{
    padding: 1rem 0;
    background: gray;
    border-radius: 0.4rem;
    text-align: center;
    font-size: .8rem;
  }
  
  .theme-button:hover{
    cursor: pointer;
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.2);
  }
  
  #footer {
    margin-bottom: 1.2rem;
    display: flex;
    font-size: larger;
    font-weight: 800;
    font-family: 'Courier New', Courier, monospace;
  }
  
  #footer *{
    text-decoration: none;
    margin: 0 .5rem;
    color: inherit;
  }
  
  #footer .button{
    cursor: pointer;
  }
  
  #footer a:visited{
    color: unset;
  }
  
  .hidden{ 
    display: none !important;
  }

