@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html{
    font-size: 62.5%;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', 'sans-serif';
    font-weight: 400;
    height: 100vh;
    color: #333;
    background-image: linear-gradient(to top left,#753682 0%,#bf2e34 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.rule{
    position: absolute;
    top: 5%;
    left: 90%;
}

.rules-play{
    margin: 5rem;
}
.rule-set {
    display: flex;
    position: absolute;
    width: 100%;
    height: 70vh;
    /* z-index: 999; */
    background-color: rgba(255, 255, 255, 0.35);;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-rule {
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50rem;
    color: white;
    font-size: large;
    font-weight: 500;
    cursor: pointer;
}

.btn-rule:hover {
    background-color: white;
    color: black;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}
.rule-set h1{
    font-size: 4rem;
    font-weight: 600;
    padding-bottom: 2rem;
}
.rule-set h2{
    font-size: 3rem;
    font-weight: 600;
    color: #3f3f3f;
}
.rule-set p{
    font-size: 2rem;
    font-weight: 400;
}
/* main{
    
} */
main{
    opacity: 1;
    position: relative;
    width: 100rem;
    height: 60rem;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(200px);
    filter: blur();
    box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.25);
    border-radius: 9px;
    overflow: hidden;
    display: flex;
}

.player{
    flex: 50%;
    padding: 9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.75s;
}
.name{
    position: relative;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 2px;
    font-weight: 300;
    margin-bottom: 1rem;
}
.score{
    font-size: 8rem;
    font-weight: 300;
    color: #c7365f;
    margin-bottom: auto;

}
.player-active{
    background-color: rgba(255, 255, 255, 0.4);
}
.player-active .name{
    font-weight: 700;
}
.player-active .current{
    opacity: 1;
}
.current{
    background-color: #c7365f;
    opacity: 0.8;
    border-radius: 9px;
    color: white;
    width: 65%;
    padding: 2rem;
    text-align: center;
    transition: all 0.75s;
}
.current-label{
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    color: #ddd;

}
.current-score{
    font-size: 3.5rem;
}
.btn{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #444;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.8rem;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.2s;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.7rem 2.5rem;
    border-radius: 50rem;
    box-shadow: 0 1.75rem 3.5rem rgba(0, 0, 0, 0.1);

}
.btn-new{
    top: 4rem;
}
.btn-hold{
    top: 46.1rem;

}
.btn-roll{
    top: 39.3rem;
}
.btn:active{
    transform: translate(-50%,3px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);

}
.btn:focus{
    outline: none;
}
.dice{
    position: absolute;
    left: 50%;
    top: 16.5rem;
    transform: translateX(-50%);
    font-size: 80px;
    color: #3f3f3f;
    /*box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);*/

}
.player-winner{
    background-color: #2f2f2f;
}
.player-winner .name{
    font-weight: 700;
    color: #c7365f;
}
.hidden{
    display: none;
}

