:root {
  --font: 'Montserrat', sans-serif;
  --size: 32px;
}

body {
  font-family: var(--font);
  margin: 0;
  text-align: center;
  background-color: #FF5100;
}

#sound-icon {
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  display: inline-block;
}

#sound-icon-on {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: inline-block;
}

#sound-icon-off {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: inline-block;
}

#audio {
  position: absolute;
  margin-top: 0px;
  margin-left: 50px;    
}


#audio controls {
  position: relative;  
}


.logoimg{
  max-width: 300px;
}
H2{
  background: #fff;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  color: #FF5100;
  margin: 3px;
  font-size: 19px;
}

.findobject{
  cursor: pointer;
}

.mascotes{
  position: absolute;
  top: -10px;
  width: 20px
}
.chegada{
  position: absolute;
  top: -10px;
  width: 20px
}
.start::after {
  content: "";
  width: 159px;
  height: 200px;
  background: url(./images/Mascotes.png);
  margin-left: -79px;
  position: absolute;
  display: inline-block;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-top: -122px;
  z-index: -1;
}
.finish::after {
  content: "";
  width: 100px;
  height: 100px;
  background: url(./images/baleia.png) ;
  margin-left: -50px;
  position: absolute;
  display: inline-block;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-top: -50px;
  z-index: 1;
}
.finish.baleia::after {
  background: url(./images/baleia.png) ;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.finish.dino::after {
  background: url(./images/dino.png) ;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.finish.lapiscor::after {
  background: url(./images/lapiscor.png) ;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.finish.lapiseira::after {
  background: url(./images/lapiseira.png) ;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#maze {
  background:trasparent;
  width: fit-content;
  margin: auto;
  margin-top: 20px;
}
#c {
  position: absolute;
  /* top: 10%; */
  /* left: 10%; */
  width: 670px;
  margin: auto;
  height: 478px;
  top: 280px;
  margin-left: -336px;
  pointer-events: none;
  z-index: -1;
}
#player {
    border-radius: 20px;
    animation-duration: 100ms;
    background: rgba(255,255,255,0.8);
    padding: 10px 20px;
    position: absolute;
    margin-left: -69px;
    cursor: pointer;
    z-index: 2;
    color: #FF5100!important;
    font-weight: 800;
}

#title {
  font-size: 32px;
  font-weight: 400;
  color: #005399;
  margin: 8px auto;
  width: fit-content;
}

#time {
  display: none;
  font-size: 16px;
  font-weight: 700;
  color: #7E1D0A;
  margin: 8px auto;
  width: fit-content;
  border-color: #FAE845;
  border-radius: 5px;
  border-style: outset;
  border-width: thick;
  padding: 8px;
}

.block {
  width: var(--size);
  height: var(--size);
}

.wall {
  background-color: #fff;
}

.start {
  background-color: transparent;
}

.finish {
  background-color: transparent;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}

.modal-content {
  background-color: #FEFEFE;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 50%;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}
.cell{
  background: transparente;
}
.close {
  color: #000;
  float: left;
  font-size: 41px;
  font-weight: 700;
  border-radius: 50%;
  border-color: #DF4744;
  width: 31px;
  height: 34px;
  display: block;
}

.close:hover, .close:focus {
  color: #7E1D0A;
  text-decoration: none;
  cursor: pointer;
}

@keyframes slideUp {
  from {
      margin-bottom: -33px;
  }
  to {
      margin-bottom: 0;
  }
}

@keyframes slideDown {
  from {
      margin-top: -33px;
  }
  to {
      margin-top: 0;
  }
}

@keyframes slideLeft {
  from {
      margin-right: -33px;
  }
  to {
      margin-right: 0;
  }
}

@keyframes slideRight {
  from {
      margin-left: -33px;
  }
  to {
      margin-left: 0;
  }
}

.slideUp {
  animation-name: slideUp;
}

.slideDown {
  animation-name: slideDown;
}

.slideLeft {
  animation-name: slideLeft;
}

.slideRight {
  animation-name: slideRight;
}

