*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: unset;
  font-family: 'sans-serif;';
  }
html{
    scroll-behavior: smooth;
}
body{
	margin: 0;
	padding: 0;
	width: 100%;
  min-height: 100vh;
	background: linear-gradient(to right, #000052 0%, #000088 50%, #000099 100%);
  color: white;
	overflow-x: hidden;
}

img{
	width: 100%;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=number] { -moz-appearance:textfield; }

button{
  cursor: pointer;
}

.header{
  background-color: white;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
}

.logo{
  width: 120px;
}

.center_content{
  display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10vh;
}

.base_form{
  background: white;
    border-radius: 5px;
    padding: 70px 30px;
    width: 90%;
    max-width: 380px;
}

.big_logo{
  width: 250px;
  margin: auto;
}

.form_label{
      color: grey;
    font-family: sans-serif;
    font-size: 14px;
    width: 250px;
    margin: auto;
    display: block;
    margin-top: 15px;
}

.form_input{
    display: block;
    margin: auto;
    width: 250px;
    border: none;
    border-bottom: 1px solid #ed2289;
    font-family: sans-serif;
    font-size: 15px;
    padding-top: 7px;
    padding-left: 10px;
}

.form_input:focus-visible{
  outline: none;
}
.alert{
  display: block;
    margin: auto;
    width: 250px;
    color: #ed2289;
    font-family: sans-serif;
    margin-bottom: 20px;
}

.black_button{
  display: block;
    margin: auto;
    width: 250px;
    color: white;
    font-family: sans-serif;
    padding: 8px 20px;
    background: linear-gradient(to right, #e40257 0%,  #4ec2f2 100%);
}

.content{
  margin: auto;
    width: 90%;
    max-width: 590px;
}

.info-container{
  display: flex;
    justify-content: center;
    gap: 10px;
    align-items: flex-start;
    padding: 15px;
    border-bottom: 1px solid #ed2289;
}

.personal-info{
      border-right: 1px solid #ed2266;
    padding-right: 10px;
}

.subtitle{
  font-family: sans-serif;
    font-weight: bolder;
    font-size: 21px;
}

.name{
  font-family: sans-serif;
    font-size: 25px;
    color: #ed2289;
}

.rank-container{
  background-color: white;
    border-radius: 5px;
    color: black;
    padding: 8px 15px;
    font-family: sans-serif;
    margin-top: 8px;
}

.black{
  color: black;
}

.game-info{
  display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.white_button{
  display: block;
    margin: auto;
    width: 250px;
    color: black;
    font-family: sans-serif;
    padding: 8px 20px;
    background-color: white;
}
.rank{
  display: flex;
    justify-content: left;
    padding: 8px 20px;
    border-bottom: 1px solid #ed2289;
    margin-top: 15px;
    gap: 20px;
}

#instrucciones{
      background: white;
    border-radius: 5px;
    padding: 48px 30px;
    width: 90%;
    max-width: 375px;
    color: black;
    margin: auto;
    margin-top: 30px;
}

p, li{
  font-family: sans-serif;
  font-size: 0.8rem;
}

.game-elements
{
      margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    margin-bottom: 15px;
    border-radius: 5px;
    padding: 8px 15px;
    color: black;
}

.text_game{
  font-weight: 900;
}
.number_game{

}

.trivia-pregunta{
  font-family: sans-serif;
    text-align: center;
    padding: 15px;
    border: 1px solid #ed2289;
    border-radius: 10px;
    font-weight: 800;
}

.trivia-respuesta{
  color: black;
    font-family: sans-serif;
    background-color: white;
    margin-top: 15px;
    padding: 10px;
    border: 2px solid #ed2289;
    border-radius: 5px;
}
.letter{
  font-family: sans-serif;
    font-weight: 800;
    color: #ed2289;
}
.text-respuesta{
  font-family: sans-serif;
  font-size: 0.9rem;
}
.end-text{
  text-align: center;
  margin-top: 15px;
}
.end-Container{
  margin-bottom: 20px;
}

.correcto{
  background-color: green;
}

.incoorecto{
  background-color: red;
}