/**
  Author:    Ping Cheng Chung
  Partner:   Michael Blum, Shiyang Li, Sungyeon Han
  Date:      10/25/2021
  University of Utah
 */

#tutorial_panel {
  position: absolute;
  background: #8080809c;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  flex-direction: column;
}

.flex-image {
  margin-top: 100px;
  width: 70%;
  height: 70%;
  margin-left: 15%;
  margin-right: 15%;
}

.flex-container {
  display: inline-flex;
  flex-wrap: nowrap;
  position: relative;
  left: 75%;
  margin: 20px;
}

.flex-container > button {
  background-color: #fff;
  width: 25px;
  margin: 10px;
  text-align: center;
  line-height: 25px;
  font-size: 16px;
}
.tutorial-button {
  border: double;
  background-color: #2c2e2c;
  color: white;
  font-size: 16px;
  min-width: 32px;
  min-height: 32px;
}
.tutorial-button:hover {
  color: #212529;
  background: white;
}

@media (max-width: 1200px) {
  #tutorial_panel {
    min-width: 1200px;
  }
}

@media (max-height: 730px) {
  #tutorial_panel {
    min-height: 730px;
  }
}
