@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

@font-face {
    font-family: 'GT Ultra Regular';
    src: url('/fonts/GT-Ultra-Median-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #232429;
    color: #e2dfda;
    font-family: 'GT Ultra Regular', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
    overflow-y: auto;
}

h1 {
    font-size: 2.5rem;
    margin: 1rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 img {
    margin-left: 15px;
}

h2 {
    font-size: 1.5rem;
    margin: 1rem -2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

h2 .material-icons {
    margin-right: 15px;
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    width: 100%;
}

h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.links {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

ul {
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

a {
    color: #bbffe8;
    text-decoration: none;
    font-size: 1rem;
    margin: 0.75rem 0;
}

a:hover {
    text-decoration: underline;
}

.container {
    text-align: center;
}

.inner-container {
    text-align: left;
    width: 50%;
    margin: 0 auto;
    padding: 1rem;
}

.collapsible-content {
    display: none;
}

.collapsible-content.expanded {
    display: block;
}