:root {
    /*darker */
    --HoookerGreen: #5C7F71;
    --DarkGoldenRod: #BA8530;
    --FaluRed: #802520;
  
    /*more plasticy */
    --HoookerGreen2: #87C1AF;
    --DarkGoldenRod2: #ECA93B;
    --FaluRed2: #9A2D28;
  
    --EerieBlack: #181818;
    --OldLace: #F5EDDC;
    --BrownSugar: #B2653B;
}

/***********************************************************************************/
/*************************************SELECTION*************************************/
/***********************************************************************************/
* {
  box-sizing: border-box;
}

Html {
  font-family: Helvetica, sans-serif;
}
.navStripes-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 20px;
  width: 100%;
}

.navStripe {
  width: 100%;
  height: 100%;
}

.navStripe:nth-child(1) {
  background-color: var(--HoookerGreen2);
}

.navStripe:nth-child(2) {
  background-color: var(--DarkGoldenRod2);
}
  
.navStripe:nth-child(3) {
    background-color: var(--FaluRed2);
}

.bodySelection {
  background-color: var(--BrownSugar); 
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
}

.nav {
  width: 100%;
  background-color: var(--BrownSugar);
  height: 13vh;
  display: flex;
  padding: 15px;
}

.anchorButton {
  background-color: var(--EerieBlack);
  width: 11vw;
  height: 9vh;
  text-decoration: none;
  color: var(--OldLace);
  font-size: 1.5vw;
  display: flex;
  align-items: center;
  align-content: center;
  border-radius: 20px;
}

.anchorButton i {
  margin-left: 15px;
}
  
.mapSelectionContainer {
  flex-grow: 1;
  display: flex;
}

.mapPanel {
  height: 100%;
  flex-direction: column;
  background-color: var(--BrownSugar);
  width: 30vw;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.mapPanel p {
  font-size: 1.5vw;
  color: var(--OldLace);
  font-weight: bold;
}

.space {
  width: 100%;
  height: 40%;
}

.startGameButton {
  background-color: var(--OldLace);
  color: var(--EerieBlack);
  font-size: 25px;
  width: 90%;
  height: 100px;
  margin: 20px;
  /* margin-top: 40%; */
}

.mapSelection {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  align-content: center;
}

.monitor {
  width: 100%;
  height: 100%;
  border: 60px solid #111211;
  background-color: #333;
  border-radius: 30px;
}

.stage {
  width: 12vw; 
  height: 10vh;
  margin: 5vh;
  background-color: var(--OldLace);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.5vw;
}

.stage.selected {
  background-color: var(--BrownSugar);
  color: var(--OldLace)
}

.mapSelection {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; 
}

.mapSelection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  animation: fadeOutScreen 2s ease forwards;
  z-index: 2;
  pointer-events: none;
}

@keyframes fadeOutScreen {
  to {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}


.mapPreview {
  width: 25vw; 
  background-size: cover;
  background-position: center;
  border: 20px solid #111211;
  /* background-color: #71665B; */
  background-color: var(--OldLace);
  border-radius: 30px;
}


/* page loader*/
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--EerieBlack);
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease
}

.stripes-container {
    position: absolute;
    flex-direction: row;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: 10%;
    z-index: 1;
}

.page-loader-title p:nth-of-type(1) {
  font-size: 3vw;
}

.page-loader-title p:nth-of-type(2) {
  font-weight: bolder;
  font-size: 10vw;
}

.page-loader-title > p {
  top:0;
  position: relative;
  z-index: 2;
  color: var(--OldLace);
  margin: 0;

}

.stripes {
    width: 33.33%;
    height: 100%;
}
  
#stripe1 { background-color: var(--HoookerGreen); animation: slideDown 1s ease forwards; }
#stripe2 { background-color: var(--DarkGoldenRod); animation: slideDown 1s ease forwards; }
#stripe3 { background-color: var(--FaluRed); animation: slideDown 1s ease forwards; }
  
@keyframes slideDown {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


