@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    background-color: rgb(98, 156, 255);
}

.main-container{
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.game-container{
    width: 450px;
    height: 450px;
    background-color: white;
    border-radius: 3%;
}

.upper-container{
    width: 450px;
    height: 90px;
    background-color: white;
    border-radius: 10px;
    font-size: 40px;
    font-weight: 500;
    display: flex;

    gap: 10px;
    justify-content: center;
    align-items: center;
}

.myPlayer{
    width: 47%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 80px;
    font-size: 50px;
    /* background-color: #00ff483d; */
}

.box{
    border-radius: 10%;
    width: 135px;
    height: 135px;
    border: none;
    font-size: 70px;
}


.center{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    margin-left: 13px;
}

.winner-main{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.winner-container{
    background-color: white;
    width: 450px;
    height: 250px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 30px;
    color: rgba(0, 0, 0, 0.922);
    font-weight: 800;
    justify-content: center;
    align-items: center;
    text-align: center;
    user-select: none;
}

.text-container{
    line-height: 55px;
    width: 400px;
}

.button-container{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.button-container button{
    padding: 10px 65px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.home-btn{
    background-color: #2a2a2ae4;
    color: white;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.51);
}

.reset-btn{
    background-color: rgb(98, 156, 255);
    color: white;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.51);
}

.home-btn:hover{
    background-color: hsl(218, 100%, 72%);
}

.reset-btn:hover{
    background-color: rgb(67, 136, 255);
}
