* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(./asset/Background.jpeg);
    background-size: cover;
    position: relative;
    padding: 10px; 
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.404);
    z-index: -1;
}

.JpSection {
    background-color: rgba(29, 0, 125, 0.646);
    border-radius: 30px;
    width: 100%;
    max-width: 600px; 
    margin: 0 auto; 
    padding: 20px;
}


button {
    font-size: 70px;
    padding: 20px;
    width: 100%;
    max-width: 120px;
    border-radius: 35px;
    background-color: rgba(185, 0, 241, 0.457);
    cursor: pointer;
    transition: opacity 0.5s ease, box-shadow 0.2s ease;
    color: white;
}

button:hover {
    opacity: 0.8;
    box-shadow: 10px 10px 50px 5px rgba(75, 0, 72, 0.954);
    background-color: rgba(189, 178, 225, 0.473);
}

button:active {
    background-color: rgba(187, 145, 249, 0.306);
}

p {
    font-weight: bold; 
    font-size: 20px;
    color: rgb(255, 255, 255);
    padding: 5px;
}

.HumanSpan {
    color: rgb(0, 157, 255);
}

.MachineSpan {
    color: rgb(234, 0, 255);
}

#MyPoints {
    color: rgb(0, 157, 255);
}

#MachinePoints {
    color: rgb(150, 0, 163);
}

h1 {
    color: rgba(0, 238, 255, 0.779);
}

@media (max-width: 576px) {
    .buttons {
        flex-direction: column;
    }

    button {
        font-size: 50px;
        max-width: 100px;
    }

    p {
        font-size: 16px;
    }

    h1 {
        font-size: 24px;
    }
}
