body {
    font-family: serif;
    color: #6d563a;
    background-color: #f0fafc;
}

main {
    margin: 200px 0 30px 0;
}

.top{
    text-decoration: underline 2px #80d7e3;
    text-underline-offset: 20%;
    text-align: center;
}

.points {
    display: grid;
    gap: 50px;
}

.points table {
    border-collapse: collapse;
    width: 60%;
    margin: auto;
}

.points table .number {
    width: 5%;
    font-size: 18pt;
    color: #ffffff;
}

.circle {
    width: 60px;
    height: 50px;
    background-color: #80d7e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.points table .strength {
    text-align: left;
    padding: 10px 10px 10px 20px;
    font-size: 16pt;
}

.bold {
    font-weight: bold;
    color: #0097b2;
}

.note {
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .br-sp {
        display: none;
    }    
}

@media screen and (max-width: 768px) {
    .points table {
        width: 90%;
    }

    .circle {
        width: 40px;
        height: 30px;
        background-color: #80d7e3;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .points table .strength {
        font-size: 14pt;
    }
}