* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat";
}

html {
  overflow: hidden;
}

#contentContainer {
  margin-top: -100vh;
  transition: background-color 2.8s;
}

.inlineContainers {
  display: flex;
}

.task {
  color: #FFF;
}

#configuration h1 {
  color: #FFF;
}

#configuration i {
  color: #EEE;
  font-size: 7rem;
}

#configuration {
  display: none;
  opacity: 0;
  transition: opacity 1s;
}
#apresentation { background-color: #121212; }

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text {
  color: #FFF;
  font-size: 2rem;
  font-weight: 200;
  text-align: center;
  padding: 5px 15px;
  margin: 0 20px;
}

#btnStartApresentation, .confBtn {
  padding: 6px 15px;
  border-radius: 20px;
  cursor: pointer;
  background-color: transparent;
  color: #FFF;
  border: 1px solid #EDEDED;
  margin-top: 30px;
  font-size: 1.5rem;
  width: 200px;
  transition: background-color 0.7s, opacity 1s;
  justify-content: center;
}

#btnStartApresentation:hover, .confBtn:hover {
  background-color: #FFFA;
}

.listElements {
  background-color: #FFF3;
  border-radius: 10px;
  font-size: 1.15rem;
  font-style: italic;
  color: #FFF;
}

.listElements a {
  color: #CCC;
  text-decoration: none;
  transition: color 1s;
  padding: 3px 0;
}

.listElements a:hover {
  color: #FFF;
}

.show {
  display: none;
  opacity: 0;
  margin-top: 45px;
  transition: opacity 0.7s;
}

.fadedEfem {
  position: absolute; 
  width: 100%; 
  height: 100vh; 
  transition: opacity 0.8s;
}

.painel {
  display: flex;
  min-width: 100vw;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  position: relative;
  /* transition: background-color 2.8s, margin-top 3s, margin-left 3s; */
}

.notice {
  color: #FFF;
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.7s;
}

.btnNarrative {
  display: None;
  opacity: 0;
  transition: opacity 1s;
}

.logo {
  font-weight: 600;
}

.btnIcon {
  margin-left: 7px;
}

.yay {
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}

.task {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 1.3rem;
}

.task button {
  display: none;
  padding: 6px 15px;
  border-radius: 100rem;
  cursor: pointer;
  background-color: #FFF6;
  color: #FFF;
  border: none;
  font-size: 1.3rem;
  margin-left: 5px;
  transition: background-color 0.7s, opacity 1s;
}

.task button:hover {
  background-color: #FFF9;
}

#prevent-horizontal-mobile {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #111;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

#prevent-horizontal-mobile h1 {
  color: #FFF;
  font-size: 1.3rem;
  text-align: center;
  margin: 0 20px;
}

@media only screen and (max-width: 1024px) {
  .text {
    font-size: 1.4rem;
  }

  .notice {
    font-size: 0.75rem;
    margin-top: 10px;
  }
}