@import url(https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,400italic,500italic,700,700italic,300,300italic);

body {
    overflow-x: hidden;
}

html,
body {
    font-family: Roboto;
    background-color: #212121;
    color: #fefefe;
    font-size: small;
}

header {
    text-align: center;
}

h1 {
    font-weight: 700;
    font-size: xx-large;
    padding-top: 1.4em;
    margin: auto auto 0.2em auto;
}

h2 {
    font-weight: 200;
    font-size: x-large;
    margin: auto auto 0.2em auto;
}


button-download a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #fefefe;
    text-transform: uppercase;
    color: #fefefe;
    text-decoration: underline;
    font-weight: 600;
    font-size: 16px;
}

button-download a::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 12px);
    background-color: #212121;
    transition: 0.1s ease-in-out;
    transform: scaleY(1);
}

button-download a:hover::before {
    transform: scaleY(0);
}

button-download a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: -2px;
    height: calc(100% + 4px);
    width: calc(100% - 12px);
    background-color: #212121;
    transition: 0.3s ease-in-out;
    transform: scaleX(1);
    transition-delay: 0.2s;
}

button-download a:hover::after {
    transform: scaleX(0);
}

button-download a span {
    position: relative;
    z-index: 3;
}

button-download {
    background-color: none;
    text-decoration: none;
    border: none;
    padding: 4% 0 0 0;
    display: flex;
    justify-content: center;
}

#myTable a {
    color: #fefefe;
}

update-date {
    font-size: smaller;
    display: flex;
    justify-content: center;
    padding: 0 0 2% 0;
    color: #aaaaaa;
}

.acc {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 0 2% 0;
}

.accordion {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 500px;
}

.accordion-item {
    border: 1px solid #3f3f3f;
    border-style:dashed;
    margin-bottom: 5px;
}

.accordion-item-header {
    padding: 10px;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
}

.accordion-item-content {
    display: none;
    padding: 10px;
}

.accordion-item.active .accordion-item-content {
    display: block;
}

.arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease-in-out;
}

.accordion-item.active .arrow {
    transform: rotate(90deg);
}