body {
	background:none;
  background-repeat: no-repeat;
  background-size:cover;
  background-attachment: fixed;
  size: auto;
  max-width: 100%;
  height: auto;
}

h2{
  text-decoration: solid;
  font-size: 4vw;
  margin-top: auto;
}

li{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #039E82;
  list-style: none;
  border-radius: 10px;
  text-decoration: none;
  font-size: 22px;
  height: 50px;
  text-align: center;
  width: 30vw;
  color: #FFF;
  margin-top: 2em;
}

a:hover {
  color: #84584D;
}

a {
  color: #039E82; 
  text-decoration: none;
}

.button-savoirplus{
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: #039E82;
 	height:3vh;
  margin-left: 35%;
  margin-right: 35%;
  border-radius: 10px 100px / 120px;
}

.color-href{
  color: #FFF;
}

#list{
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#app-container {
  top: 0;
  left: 0;
  padding: 40px 20px;
}

#questions-container {
  display: flex;
  justify-content: center;
  text-align: center;
  min-width: 100px;
  min-height: 60px;
}

#score-container {
  position: absolute;
	margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  background: #039E82;
  padding: 10px 1em;
 	height:9vh;
  border-radius: 10px 100px / 120px;
}

#app-title {
  margin-top: 0;
  margin-bottom: 40px;
  margin: 0 0 40px 20px;
  text-align: center;
  font-size:5vw;
  color: #84584D;
}

/*
*
*
*     Boutton
                  *
                  *
                  *
                  */

div[class*=box] {
  height: 100%;
  width: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-1 { background-color: #039E82; border-radius: 10px; }

#button-switch{
  font-size: 22px;
  margin: 0 auto;
  margin-top: 1em;
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 30vw;
  cursor: pointer;
}


.btn-one {
  color: #FFF;
  transition: all 0.3s;
  position: relative;
}
.btn-one span {
  transition: all 0.3s;
}
.btn-one::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(255,255,255,0.5);
  border-bottom-color: rgba(255,255,255,0.5);
  transform: scale(0.1, 1);
}
.btn-one:hover span {
  letter-spacing: 2px;
}
.btn-one:hover::before {
  opacity: 1; 
  transform: scale(1, 1); 
}
.btn-one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
}
.btn-one:hover::after {
  opacity: 0; 
  transform: scale(0.1, 1);
}

#textTable {
  color: white;
}

#textscore{
  white-space: pre;
  text-align: center;
  color: #039E82;
  margin-top: 1em;
  font-size: 1.5em;
  margin-bottom: 40px;
}

#resultscore{
  margin-top: 0;
  margin-bottom: 40px;
  margin: 0 0 40px 20px;
  text-align: center;
  font-size:3vw;
  color: #84584D;
}