*{
    margin:0px;
    padding: 0px;
    box-sizing: inherit;
}
html{
    font-size: 62.5%;
    box-sizing: border-box;
}
body{
    font-family: 'Courier New', Courier, monospace;
    color:#fff;
    background: linear-gradient(to right, #0e000f, #610707);
}
header{
    position: relative;
    height: 35vh;
    border-bottom:4px solid white;
 
}
main{
    height: 65vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.left{
    width:52rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.right{
    width: 52rem;
    font-size: 2rem;
}
h1{
    font-size: 4rem;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 35%;
    left:50%;
    transform: translate(-50%,-50%);
}
h3{
    font-size: 3rem;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 52%;
    left:50%;
    transform: translate(-50%,-50%);
}
.number{
    background-color:white;
    color:#333;
    font-size: 6rem;
    width: 15rem;
    border-radius: 25px;
    padding: 3rem 0rem;
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%,50%);
}
.between{
    font-size: 3rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
}
.again{
    position: absolute;
    top: 2rem;
    left: 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 3rem !important;
}
.check{
    font-weight: bold;
    font-size: 2.5rem !important;
    border-radius: 50px;
}
.guess{
    background: none;
    border: 4px solid white;
    font-family: inherit;
    border-radius: 25px;
    color: inherit;
    font-size: 5rem;
    padding: 2.5rem;
    width: 25rem;
    text-align: center;
    display: block;
    margin-bottom: 3rem;
}
.btn{
    border: none;
    background-color: white;
    color:#222;
    font-size: 2rem;
    font-family: inherit;
    padding: 2rem 3rem;
    cursor: pointer;
}
.btn:hover{
    background-color: #ccc;
}
.message{
    margin-bottom: 8rem;
    height: 3rem;
    font-size: 3REM;
}
.label-score{
    font-size: 2.5rem !important;
    margin-bottom: 2rem;
}
.label-highscore{
    font-size: 2.5rem !important;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height:90vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.gamesg{
    font-size: 2rem;
    font-weight: bold;
}
.modal-content {
    background: linear-gradient(to right, #a3510a, #eacc74);
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border-radius: 30px;
    color:black;
    border: 4px solid #090606;
    width: 80%; /* Could be more or less, depending on screen size */
}

.modal-content h2{
    font-size: 3rem;
    justify-content: space-around;
    letter-spacing: 8px;
    align-items: center;
    text-align: center;
}
#acceptBtn {
    margin-left: 40%;
    border: none;
    border-radius: 25px;
    padding:10px 25px;
    font-weight: bold;
    background-color: #976d25;
    width: 25rem;
    font-size: 2rem!important;
    cursor: pointer;
}
.blur{
    filter: blur(5px);
}