* {
    margin: 0;
    padding: 0;
    font-weight: bolder;
    font-family: "Archivo Black", sans-serif;
    font-style: normal;

}

body {
    background-color: black;
}

.notes {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    height: 10vh;
    justify-self: center;
    border: 1px solid white;
    margin-top: 20px;
    margin-bottom: -60px;
    border-radius: 20px;
    color: white;
    font-size: 40PX;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 99vh;



}


.box {
    width: 43%;
    height: 80%;
    border: 1px solid #5f5d5d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: white;
    cursor: pointer;

}

.box:hover {
    background-color: rgb(13, 13, 13);
    transform: scale(1.03);
    transition: transform 0.6s;
}

.headin {
    font-size: 50px;

}

.curr_box {
    border: 1px solid white;
    width: 200px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;

}

.curr_head {
    font-size: 20px;
}

.total_scr {
    font-size: 100px;
    font-weight: bolder;
    margin-top: 35px;

}

.mid_sec {
    border: none;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 100px;
}

.butt {
    width: 150px;
    height: 45px;
    background-color: rgb(25, 24, 24);
    border: 1px solid rgb(118, 115, 115);
    border-radius: 15px;
    cursor: pointer;
    color: white;
}

.butt:hover {
    border: 1px solid rgb(255, 255, 255);
    background-color: rgb(62, 60, 60);
    transform: scale(1.04);
    transition: all 0.3s;
}

.dice_box {
    width: 150px;
    height: 150px;
    border: 1px solid white;
    border-radius: 30px;
}