* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  color: #2d3e55;
  font-weight: bold;
  
  font-size: 1rem;
  opacity: 0.8;
}
h2 {
  color: #2c333d;
  font-weight: 50;
  opacity: 0.8;
}

h3 {
  color: #426696;
  font-weight: 100;
  opacity: 0.8;
}

h5 {
  color: #323232;
  font-weight: 60;
  opacity: 0.8;
}

h6, p {
  font-family: Arial;
  font-weight: 50;
  opacity: 0.6;
  z-index: -5000;
}

main {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  background: linear-gradient(to right top, #65dfc9, #6cdbeb);
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass {
  background: white;
  min-height: 80vh;
  width: 60%;
  background: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.3)
  );
  border-radius: 2rem;
  z-index: 1;
  backdrop-filter: blur(2rem);
  display: flex;
}

.dashboard {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  background: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.3)
    );
  border-radius: 2rem;
  line-height: 2;
  
}
.link {
  display: flex;
  margin: 2rem 0rem;
  padding: 1rem 5rem;
  align-items: center;
}
.link h2 {
  padding: 0rem 2rem;
}


/* GAMES */
.status {
  margin-bottom: -2rem;
}

.status input {
  background: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.3)
  );
  border: none;
  width: 50%;
  padding: 0.5rem;
  border-radius: 2rem;
}

.games {
  margin: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.card {
  display: flex;
  background: linear-gradient(
    to left top,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.5)
  );
  border-radius: 1rem;
  margin: 2rem 0rem;
  padding: 2rem;
  box-shadow: 16px 6px 20px rgba(222, 122, 122, 0.212);
  justify-content: space-between;
}

.tip-ayuda{
  position: absolute;
  color: #191919;
  align-items: center;
  text-align: center;
  background-color: #4fb5e8;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 15px;
  line-height: 1pc;
  cursor: default;
  z-index: 5000;
}

.tip-ayuda:before{
    content:'?';
    font-weight: normal;
    color:rgb(5, 0, 0);
}
/*Ventana flotante*/
.tip-ayuda:hover h6{
    display:block;
    transform-origin: 100% 0%;

    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}
/*Ventana flotante formato*/
.tip-ayuda h6{
  display: none;
  text-align: left;
  background-color: #1E2021;
  padding: 20px;
  width: 300px;
  position: static;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.872);
  right: -4px;
  color: #FFF;
  font-size: 13px;
  line-height: 1.4;
  
}

.tip-ayuda h6:before{
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:20px solid transparent;
    border-bottom-color:#0d1418;
    right:10px;
    top:-12px;
    
}
.tip-ayuda h6:after{ 
    width:50%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
    
}



/*.percentage {
  font-weight: bold;
  background: linear-gradient(to right top, #65dfc9, #6cdbeb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}*/
