* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Pixelify Sans", sans-serif;
    
  }

  :root {
    background-color: #ad8671;
  }


  #experience{
    position: fixed;
    height: 100%;
    width: 100%;
    top : 0;
    left: 0;
    overflow: hidden;
  }

  #experience-canvas{
    width: 100%;
    height: 100%;
  }
  
  .modal-bg-overlay {
    z-index: 750;
    height: 100%;
    width: 100%;
    background-color: #313131;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  
  .modal {
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    background-color: #faedcd;
    border: 4px solid #fff;
    color: #bc6c25;
    transition: background 0.4s ease-in;
    transition-delay: 0.1s;
  }
  
  .modal-wrapper {
    padding: 12px;
  }
  
  .modal-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 2px solid #fff;
    margin-bottom: 12px;
  }
  
  .modal-exit-button {
    background: transparent;
    border: 2px solid #bc6c25;
    color: #bc6c25;
    padding: 0px 14px;
    cursor: pointer;
    font-weight: 600;
  }
  
  .modal-exit-button:hover {
    background: #fff;
    border: 2px solid #fff;
    color: var(--default-bg);
    padding: 0px 14px;
    cursor: pointer;
  }
  
  .modal-title {
    font-size: 32px;
  }
  
  .modal-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .modal-project-description {
    font-size: 18px;
  }
  
  .modal-project-visit-button {
    background: #fff;
    border: 2px solid #fff;
    color: var(--default-bg);
    padding: 8px 0px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
  }
  
  .modal-project-visit-button:hover {
    background: var(--default-bg);
    border: 2px solid #bc6c25;
    color: #bc6c25;
    cursor: pointer;
  }

  .hidden {
    display: none;
  }

  .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ad8671;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 12px solid white;
    z-index: 1000;
  }
  
  .loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 36px;
  }
  
  .enter-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 36px;
    background: #ad8671;
    border: 3px solid white;
    padding: 8px 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .enter-button:hover {
    cursor: pointer;
    background-color: #fff;
    color: #ad8671;
  }
  
  .instructions {
    z-index: 1000;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 26px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }