:root {
  --bg-color: #0c1022;
  --secoundBg-color: #1c1d22;
  --hovBg-color: #0c1022b0;
  --wh-color: #fff;
  --text-color: #12c2e9;
  --bg-linear: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
  --bg-linear1: linear-gradient(to left, #1c92d2, #f2fcfe, #c471ed);


}
span{
  color: var(--text-color);
}
a{
  text-decoration: none;
}
body{
  width: 100%;
  height: 100vh;
  margin: 0;
  background:var(--bg-linear1);
  color: black;
  font-family: Arial;
}
.container{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.move-icon{
  height:50px;
  
}
.move-button{
  position: relative;
  width: 120px;
  height:120px;
  background-color: transparent;
  border:3px solid white;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}
.move-button::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--hovBg-color);
  border-radius: 50%;
  transition:.2s ;
  z-index: -1;
}
.move-button:hover::after
{
  width:100%;
}
.result{
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  text-align: center;
}
.js-score{
  margin-top: 60px;
  text-align: center;
}
.reset-score-btn{
  position: relative;
  background:transparent;
  color: black;
  border: none;
  font-size: 15px;
  padding: 8px 15px;
  cursor: pointer;
  border: 1px solid black ;
  border-radius: 5px;
  transition:.5s ease;

}
.reset-score-btn::before{
  content: '';
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  background-color: var(--secoundBg-color);
  transition:.5s ease;
  z-index: -1;

}
.reset-score-btn:hover{
  color: white;
}
.reset-score-btn:hover::before{
  width:100%;
}

.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 9%;

}

.footer-text p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.6rem;
}

.footer-iconTop a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .8rem;
  background: var(--text-color);
  border: .2rem solid var(--text-color);
  border-radius: .6rem;
  z-index: 1;
}

.footer-iconTop a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  inset: 0;
  background: var(--secoundBg-color);
  z-index: -1;
  border-radius: .6rem;
  transition: .5s;
}

.footer-iconTop a:hover:before {
  width: 100%;
}

.footer-iconTop a i {
  font-size: 2.4rem;
  color: var(--bg-color);
  transition: .5s;
}

.footer-iconTop a:hover i {
  color: var(--text-color);
}
