*{
    font-family: 'Work Sans', sans-serif;
}

h1{
    text-align: center;
    font-size: 32pt;
    text-transform: uppercase;
    color:rgba(255, 255, 255, 0.8);
    line-height: 1;
    margin: 8px;
    margin-top: 14px;
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.7), 0 -3px 3px rgba(255, 255, 255, 0.3); 
}
h2{
    text-align: center;
    margin: 8px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    line-height: 1;
    font-size: 24pt;
    color:rgba(255, 255, 255, 0.8);
}
h5{
    margin-top: 24px;
    text-align: center;
    letter-spacing: 5px;
    font-size: 12pt;
    font-weight: 400;
    opacity: 0.7;
    margin: 0;
}

svg{
    color: #fff;
}

body {
    background: #13132f;
    color: #fff;
    padding: 0;
    margin: 0;
}

.container {
    padding: 24px 16px;
    height: 100%;
    margin: 0 auto;
    max-width: 768px;
}

ul{
    list-style-type: none;
    margin: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: stretch;
    align-items: stretch;
    padding-left: 0;
}


.card{
    background: #2c7dff;
    margin: 8px auto;
    margin-bottom: 28px;
    border-radius: 8px;
    padding: 12px 24px 12px 12px;
    width: fit-content;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7), 0 -1px 1px rgba(255, 255, 255, 0.5); 
    box-shadow: inset 0 -2px 5px 0 rgba(136, 136, 136, 0.3), inset 0 3px 5px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-out;
}

.card td{
    padding: 5px;
}

table{
    font-size: 16pt;
    font-weight: 700;
    color: #fff;
}

th {
    text-align: start;
    color: #95beff;
    font-weight: 400;
}


.dates-ul > li {
    min-width: 40px;
    background: #f8cc3d;
    margin: 5px;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    color: rgb(0, 0, 0, 0.7);
    font-size: 14pt;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1), inset 0 7px 5px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 5px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-out;
}

.dates-ul > li:hover{
    transform: translateY(-5px);
    box-shadow: 0 7px 5px 0 rgba(0, 0, 0, 0.1), inset 0 7px 5px 0 rgba(255, 255, 255, 0.3);
}

li ul{
    flex-direction: row;
}

a {
    display: block;
    color: rgb(0, 0, 0, 0.8);
    padding: 12px;
    margin: 5px;
    text-decoration: none;
    transition: all 0.3s;
    word-wrap: none;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1), inset 0 7px 5px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 5px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-out;
}

a:hover {
    color: #000;
    background: #ffeaa4;
    transform: translateY(-3px) scaleX(1.05);
}

.buttons-container {
    display: flex;
    justify-content: center;
    margin: 12px;
}

.button {
    display: block;
    width: fit-content;
    justify-self: center;
    background: rgb(108, 0, 197);
    color: #fff;
    text-align: center;
    padding: 12px;
    font-weight: 400;
    border-radius: 8px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.5), inset 0 7px 5px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 5px 0 rgba(255, 255, 255, 0.1);
}

.button:hover{
    font-weight: 700;
    background: #e3b3ff;
    transform: translateY(-3px) scaleX(1.05);
}

footer{
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
footer a{
    padding: 18px 16px 16px 10px;
    display: flex;
}
footer a:hover{
    background: #000;
}
#footer-logo{
    height: 64px;
    width:fit-content;
}
#footer-name{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}
.highlight{
    font-weight: 700;
}

::-webkit-scrollbar {
    width: 11px;
}
::-webkit-scrollbar-track {
    background: #10101b;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(56, 88, 177);
    box-shadow: inset 0 3px 3px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 3px 0 rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(16, 45, 126);
}
::selection{
    color: rgb(31, 31, 31);
    padding: 5px;
    background:#00da7f;
}
