﻿/* .table {
    margin: 0 auto;
    font-size: 20px;
    font-weight: 600;
    width: 70%;
    border-spacing: 20px 10px;
}


.table td {
    background-color: #59416c;
    border-radius: 10px;
    text-align: center;
    width: 6em;
    height: 3em;
    transition: background-color 0.5s ease-in-out;
}


.table td:hover {
    background-color: #2d1e37;
    transition: background-color 0.5s ease-in-out;
}


.table a {
    text-decoration: none;
    color: #a980d5;
    padding: 20px 40px;
    transition: color 0.5s ease-in-out;
}


.table a:hover {
    color: #c696f2;
    transition: color 0.5s ease-in-out;
} */


.ep-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    width: 50%;
    margin: 0 auto;
    font-size: larger;
    font-weight: 600;
    padding: 8vh 0;
}


.ep{
    display: flex;
    justify-content: center;
    justify-items: center;
    padding: 1em 2em;
    background-color: #750000;
    border-radius: 10px;
    width: auto;
    height: auto;
    transition: background-color 0.4s ease-in-out;
}


.ep:hover {
    background-color: #2d1e37;
    transition: background-color 0.1s ease-in-out;
}


.ep-list a {
    text-decoration: none;
    color: #c5e43b;
    transition: color 0.7s ease-in-out;
    border-radius: 10px;
    margin: 0.5em;
}


.ep-list a:hover {
    color: #c696f2;
    transition: color 0.1s ease-in-out;
}


@media screen and (max-width: 600px) {
    .ep-list {width: 90%;}
    .ep {width: 60vw;}
}