* {
    padding: 40;
    margin: 40;
    box-sizing: border-box;
}

body {
    background-color: antiquewhite;
	background: #37505C;
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100%;   
	font-family: 'Finger Paint', cursive;
		
}

button{
	font-family: 'Finger Paint', cursive;
	color: #000;
		
	}
	

button.button-3 {
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  -webkit-tap-highlight-color: transparent;
}

button.button-3:focus {
  outline-style: solid;
  outline-color: transparent;
}

button.button-3 {
  touch-action: manipulation;
  margin: 3px;
  cursor: pointer;
}

button.button-3 {
  touch-action: manipulation;
  position: relative;
  border: 1px solid #0360df;
  border-radius: 50px;
  padding: 12px 16px;
  background-color: #0360df;
  background-image: radial-gradient(75% 50% at 50% 0%, #f4feff, transparent), radial-gradient(75% 35% at 50% 80%, #8de3fc, transparent);
  box-shadow: inset 0 -2px 4px 1px rgba(17, 110, 231, 0.6), inset 0 -4px 4px 1px #8de3fc, inset 0 0 2px 1px rgba(255, 255, 255, 0.2), 0 1px 4px 1px rgba(17, 110, 231, 0.2), 0 1px 4px 1px rgba(0, 0, 0, 0.1);
  color: #fff;
  text-shadow: 0 1px 1px #116ee7;
  transition-property: border-color, transform, background-color;
  transition-duration: 0.2s;
}
button.button-3::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  width: 80%;
  height: 40%;
  background-image: linear-gradient(to bottom, #f4feff, transparent);
  opacity: 0.75;
}
button.button-3:hover {
  transform: scale(1.04);
}
button.button-3:active {
  border-color: #0048d5;
  transform: scale(0.96);
  background-color: #0048d5;
}

.quiz-container{
    border-radius: 10px;
    box-shadow: 0 0 10px 0 black;
    margin-top: 20%;
    margin-bottom: 10%;
    width: 100%;
    height: 500px;
    background: #86DF70;
    position: static;
}

#quiz-question {
    font-size: 1.5rem;
    padding: 10px; 
    text-align: center;
}

ul {
    list-style: none;
    margin-left: 30px;
	border-bottom-color: #000000;
}

li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding: 5px;
    cursor: pointer;
}

#submit {
    background-color: #F1C40E;
    border: none;
    color: white;
    font-size: 1.2rem;
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 7.5px;
    border-radius: 0 0 10px 10px;
}

#submit:hover {
    background-color: #F39C12;
    cursor: pointer;
}


header {
 box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
 background: rgba(78,95,96,1.00);
 position: fixed;
 width: 100%;
 top: 0;
}

header, nav ul {
 display: flex;
 justify-content: space-between;
 padding: 1rem;
}

nav ul li {
 margin-left: 1rem;
}
h1 {font-family: 'Finger Paint', cursive;
	color: #F2C14E;
	
}
p {
	font-family: 'Finger Paint', cursive;
	color: #F2C14E;
	
}

a {
  position: relative;
  width: 160px;
  height: 50px;
  line-height: 48px;
  background: #000;
  text-transform: uppercase;
  font-size: 25px;
  text-align: center;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: 0.5s;

  -webkit-box-reflect: below 1px linear-gradient(transparent, #0004);
}

a span {
  position: absolute;
  display: block;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  text-align: center;
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}

a:hover span {
  color: rgba(255, 255, 255, 1);
}

a span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #c0392b,
    #f39c12,
    #f1c40f,
    #2ecc71,
    #3498db,
    #2980b9,
    #9b59b6,
    #8e44ad,
    #c0392b,
    #f39c12,
    #f1c40f,
    #2ecc71,
    #3498db,
    #2980b9,
    #9b59b6,
    #8e44ad
  );
  background-size: 400%;
  opacity: 0;
  transition: 2.5s;
  animation: eff 20s linear infinite;
}

a:hover::before,
a:hover::after {
  opacity: 1;
}

a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #c0392b,
    #f39c12,
    #f1c40f,
    #2ecc71,
    #3498db,
    #2980b9,
    #9b59b6,
    #8e44ad,
    #c0392b,
    #f39c12,
    #f1c40f,
    #2ecc71,
    #3498db,
    #2980b9,
    #9b59b6,
    #8e44ad
  );
  background-size: 400%;
  opacity: 0;
  filter: blur(20px);
  transition: 0.5s;
  animation: eff 20s ease infinite;
}

@keyframes eff {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}


.btn-12{
  position: relative;
  right: 20px;
  bottom: 20px;
  border:none;
  box-shadow: none;
  width: 130px;
  height: 40px;
  line-height: 42px;
  -webkit-perspective: 230px;
  perspective: 230px;
}
.btn-12 span {
  background: rgb(0,172,238);
background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  display: block;
  position: absolute;
  width: 130px;
  height: 40px;
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  border-radius: 5px;
  margin:0;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btn-12 span:nth-child(1) {
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 5px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12 span:nth-child(2) {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  -moz-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.btn-12:hover span:nth-child(1) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.btn-12:hover span:nth-child(2) {
  box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
 color: transparent;
  -webkit-transform: rotateX(-90deg);
  -moz-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}


/*para baixo é o topo*/

.root {
  display: flex;
  flex-direction: column;
  background: #212124;

  min-height: 100vh;
}

header {
  display: flex;
  width: 100%;
  height: 68px;

  background: #1a1a1d;
}

header .container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 100%;

  padding: 0 2em;
}

header .container-header nav {
  display: flex;
  list-style-type: none;
}

header .container-header h2 {
  color: #fff;
}

header .container-header nav li a {
  color: #fff;
  font-weight: 400;
  color: #999;
  text-decoration: none;
  margin-left: 15px;
}

header .container-header nav li a.active {
  color: #fff;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

header .container-header .search-container input {
  background: #252528;
  border: 0;
  padding: 7px 10px;
  border-radius: 7px;
  width: 200px;
  outline: 0;
  color: #fff;
}

header .container-header .search-container input::placeholder {
  color: #999;
}

header .container-header .search-container {
  display: flex;
}

header .container-header .search-container button {
  background: #597df2;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 7px 15px;
  margin-left: 10px;
  cursor: pointer;
  outline: 0;
}

header .container-header .mobile-menu {
  display: none;
}

header .container-header .mobile-menu img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  header .container-header .search-container {
    display: none;
  }
  
  header .container-header nav {
    display: none;
  }
  
   header .container-header .mobile-menu {
    display: block;
  }
}
label{
	
	color: rgba(150,5,7,1.00)
}



