* {
    margin: 0;
    padding: 0;
    font-size: 14pt;
}

html {
    background: #f0f5f9;
    background-repeat: repeat;
    max-width: 720px;
    margin: 0 auto;
    background-position: 50% 50%;
}

ul, li {
    list-style: none;
}

@media screen and (min-width: 720px) {
    .nav2 {
        padding: 4px;
        font-size: 16px;
    }

    .nav2 ul {
        padding: 4px 0;
    }

    .nav2 ul li {
        padding: 0 4px;
    }

    .nav2 ul li a {
        padding: 5px 0;
        cursor: pointer;
    }
}

.nav2 {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 2px;
    font-size: 13px;
    background: #fff;
}

.nav2 ul {
    padding: 2px 0;
    display: flex;
    justify-content: space-between;
}

.nav2 ul li {
    width: 100%;
    box-sizing: border-box;
    padding: 0 2px;
}

.nav2 ul li a {
    display: block;
    padding: 3px 0;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    background: #bf9731;
    font-size: 16px;
}

.nav2-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
}

.high-light {
    color: red;
    background-color: #FFFF00;
}


.test {
    font-weight: bold;
    -webkit-animation: my 1000ms infinite;
    -moz-animation: my 1000ms infinite;
    -o-animation: my 1000ms infinite;
    animation: my 1500ms infinite;
}

@keyframes my {
    0% {
        color: #0000FF;
    }
    50% {
        color: #00FF00;
    }

    100% {
        color: #FF0000;
    }
}

table {
    border-collapse: collapse;
    border: 3px double #ffd0b0;
    font-size: 14pt;
    text-align: center;
}

.list tr td {
    border: 1px double #ffd0b0;
    background-color: white;
    font-size: 12pt;
    font-weight: 700;
    color: black;
    text-align: center;
}

.list tr td p{
    font-size: 12pt;
    font-weight: 700;
    color: black;
    text-align: left;
}
