
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e0f7fa; 
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
    font-size: 24px;
    color: #00796b;
}

.details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details .wins {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.details p {
    margin: 5px 0;
    color: #004d40; 
}

.details .turn {
    font-weight: bold;
}

.boxContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
}

.row1, .row2, .row3 {
    display: flex;
    gap: 10px;
}

.box {
    width: 100px;
    height: 100px;
    background-color: #80deea;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    color: #004d40; 
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.box:hover {
    background-color: #4dd0e1;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.footer .wins p {
    margin: 5px 0;
    color: #004d40;
}

.reset {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #00796b; 
    color: #fff; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reset:hover {
    background-color: #004d40; 
}

@media (max-width: 600px) {
    .box {
        height: 80px; 
        font-size: 24px;
    }
    
    .container {
        padding: 15px;
    }

    .header h1 {
        font-size: 20px;
    }

    .reset {
        font-size: 14px;
        padding: 8px 16px;
    }
}
