* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Monserrat", sans-serif;
    background-color: #121212;
    color: #eeeeee;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0.625rem 1rem 0.625rem 1rem;
}

header h1 {
    margin: 0;
    text-align: center;
}

header a {
    position: absolute;
    cursor: pointer;
    left: 0;
    line-height: 0;
}

header a object {
    pointer-events: none;
    width: 1.5rem;
    height: 1.5rem;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
}

.accordion {
    width: 80%;
    background-color: #191919;
    color: #b4b4b4;
    cursor: pointer;
    padding: 1rem;
    text-align: left;
    border: none;
    outline: none;
    transition: background-color 0.4s;
}

.accordion:after {
    content: "+";
    font-size: 13px;
    color: #b4b4b4;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "-";
}

.accordion:first-of-type {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.accordion:last-of-type {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.accordion:last-of-type.active {
    border-radius: 0;
}

.accordion:last-of-type.active + .panel {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.accordion.active {
    background-color: #2a2a2a;
}

.panel {
    width: 80%;
    padding: 0 1rem;
    background-color: #222222;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.1s ease-out;
}

.panel ul {
    padding: 0.5rem;
}

.panel ul li a {
    color: #2870bd;
    text-decoration: none;
}
