section {
            border: solid 1px #2A8BA4;
            border-collapse: collapse;
            flex-grow: 1;
            width: 75%;
            margin-right: auto;
            margin-left: auto;
            margin-top: 4em;
        }

#encabezadofixture{padding: 1em;
                   display: flex;
                   justify-content: space-between;
                   align-items: center;}

#encabezadofixture a{font-size: 0.6em;}

        section ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        section ul li {
            width: 100%;
            flex-grow: 1;
        }

        section ul li a {
            border: solid 1px #ABD2DD;
            border-collapse: collapse;
            display: block;
            padding: .125em .5em;
            text-align: center;
            color: rgba(39, 121, 121, 0.5);
            background-color: rgba(39, 121, 121, 0.25);
            text-decoration: none;
            font-weight: bold;
            outline: none;
            transition: all .5s ease;
        }

        section ul li a.actual {
            border-bottom: solid 1px transparent;
            background-color: transparent;
            color: rgba(39, 121, 121, 1);
            outline: none;
            transition: all .3s ease;
        }