
html{
  height:100%;
}
body{
  min-height: 100%;
  margin:0;
  padding:0;
  box-sizing:border-box;
  width:100%;
  height:100vh;
  background-color: black;
  color: rgb(192, 152, 99);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(home-backgroung.avif);
  background-repeat: no-repeat;
  background-size: cover;
}
.whole{
  width:900px;
  height:100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.buttons{
  width:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
}
button{
  width:200px;
  height:70px;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: 15px;
  border-radius: 1rem;
  border: none;
  padding:10px 24px;
  cursor: pointer;
  font-size: 18px;
  background-color: rgb(29, 28, 28);
  color:aliceblue;
  transition: 0.1s;
  border: 3px solid burlywood;
  font-weight: bold;
  font-family: 'Gruppo';
}
button:hover{
  transform:scale(0.9);
  color:rgb(197, 161, 113);
}
button:active{
  background-color:rgb(211, 172, 119);
  color:black;
}
.levels{
  margin-bottom: 10px;
  width:400px;
  height:50px;
  display:none;
  font-size: 20px;
  font-family: 'Gruppo';
  justify-content: center;
  align-items: center;
  text-align: center;
}
.level{
  cursor:pointer;
  text-decoration: none;
  background-color: rgba(0,0,0,0.5);
  color:burlywood;
  -webkit-text-stroke: 0.5px  burlywood;
  outline:1px solid burlywood;
  width:200px;
  padding: 2px;
  border-radius: 1rem;
  transition: 0.3s;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: bold;
}
.level:hover{
  color:black;
  -webkit-text-stroke: 0.5px  black;
  background-color: rgba(222, 184, 135,0.5);
  width:210px;
}
h1{
  font-size: 90px;
  width:590px;
  margin-bottom: 100px;
  margin-top: 70px;
  color:transparent;
  -webkit-text-stroke:1px burlywood;
  background:url(home-title.jpeg);
  -webkit-background-clip: text;
  background-position: 0 0;
  animation:back 30s linear infinite;
}
@keyframes back{
  100%{
    background-position: 2000px 0;
  }
}
.messages{
  display:none;
  flex-direction: column;
  background-color: rgb(17, 16, 16);
  border: 1px solid burlywood;
  border-radius: 2rem;
  height:490px;
  width:400px;
  z-index: 9;
  padding:10px 15px;
  text-align: center;
  font-size: 20px;
  font-family: 'Gruppo';
}
.stack{
  margin-top:200px;
  display:flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.back-to-game{
  width:100px;
  height:50px;
}
.end-message{
  color:#fff;
  line-height: 28px;
}
.end{
  color:rgb(213, 180, 137);
}
p{
  color:rgb(217, 194, 159);
}
span{
  font-style: italic;
  color:blanchedalmond;
}
.leve{
  cursor:pointer;
  text-decoration: none;
  background-color: transparent;
  color:white;
  transition: 0.3s;
  margin-left: 10px;
  margin-right: 10px;
}
.leve:hover{
  color:rgb(219, 194, 163);
}