:root {
  --dark-purple-color: rgb(68, 33, 77);
  --light-purple-color: rgb(204, 181, 210);
  --dark-green-color: rgb(33, 77, 40);
  --arnault-color: rgb(41, 112, 130);
}

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

.right-arrow {
  rotate: 90deg;
}

.text-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  text-align: center;
}

.panel {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-purple-color);
  width: 100%;
  height: 100vh;
  padding: 0 60px;
  color: white;
  text-align: center;
}

.panel.light {
  background-color: var(--light-purple-color);
  color: var(--dark-purple-color);
}

/* @media (orientation: portrait) {
  .panel {
    width: 100vw;
  }
} */

#panel-1 {
  h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .subtext {
    margin-top: 0px;
  }
}

#panel-2 {
  #circle {
    margin: auto;
    height: 40px;
    width: 40px;
    border: 1px dashed red;
    border-radius: 50%;
  }

  #single-pixel {
    margin: 49%;
    height: 1px;
    width: 1px;
    background-color: red;
  }
}

#panel-3 {
  #median-income {
    margin: auto;
    height: 4px;
    width: 5px;
    background-color: white;
  }
}

#panel-4 {

  #million {
    margin: auto;
    height: 26px;
    width: 27px;
    background-color: white;
  }
}

#panel-5 {
  #median-lifetime-earning-smic {
    margin: auto;
    height: 25px;
    width: 25px;
    background-color: white;
    margin-bottom: 20px;
  }

  #median-lifetime-earning-graduate {
    margin: auto;
    height: 34px;
    width: 35px;
    background-color: #DDDDDD;
  }
}

#panel-6 {
  #fortune-1 {
    margin: auto;
    height: 38px;
    width: 38px;
    background-color: white;
  }
}

#panel-7 {
  #fortune-0-1 {
    margin: auto;
    height: 265px;
    width: 265px;
    background-color: white;
  }
}

#millions-100 {
  background-color:var(--dark-green-color);
}

#arnault {
  position: relative;
  background-color:var(--arnault-color);
  border-left: 1px solid white;
  border-right: 1px solid white;

  .tick {
    position: absolute;
    width: 38px;
    height: 1px;
    background-color: white;
  }
  
  .tick.large {
    width: 75px;
  }

  .check-point {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    left: 0;
    max-width: 60vw;
    .check-tick {
      width: 100px;
      height: 2px;
      background-color: red;
    }
  }
}

#cursor {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  gap: 10px;

  #fortune-counter {
    font-weight: bold;
  }

  #down-arrow {
    width: 50px;
    rotate: 90deg;
  }
}

#money-counter {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100vw;
  display: none;
  padding: 10px;
  background-color: white;
  color: black;
  border: 1px solid black;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  #play-pause {
    border: none;
    background-color: transparent;
  }
}

.icon {
  height: 48px;
}

.icon.medium {
  height: 1.8rem;
}

.icon.small {
  height: 1rem;
}

#tiktok {
  margin-left: -4px;
  margin-right: -4px;
  height: 56px;
}

#twitter {
  z-index: 6;
  position: relative;
}

.icon-filler {
  position: relative;
  .icon-filler-inner {
    height: 33px;
    width: 33px;
    background-color: white;
    position: absolute;
    bottom: 12px;
    left: 6px;
    z-index: 5;
  }
}

.horizontal-container {
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
}

input.large {
  width: 18rem;
  font-size: 1.4rem;
}

#share-link {
  display: none;
}

.credit {
  margin-top: min(100px, 10vh);
  font-size: 0.8rem;
  font-style: italic;
}