@font-face {
    font-family: Caudex;
    src: url(https://aspenni.neocities.org/assets/fonts/caudex/Caudex-Regular.ttf);
}

@font-face {
    font-family: Caudex;
    src: url(https://aspenni.neocities.org/assets/fonts/caudex/Caudex-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: Caudex;
    src: url(https://aspenni.neocities.org/assets/fonts/caudex/Caudex-Italic.ttf);
    font-style: italic;
}

@font-face {
    font-family: Caudex;
    src: url(https://aspenni.neocities.org/assets/fonts/caudex/Caudex-BoldItalic.ttf);
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: Linja Namako;
    src: url(https://aspenni.neocities.org/assets/fonts/linjanamako.ttf);
}

body {
    font-family: "Caudex", "Times New Roman", serif;
    background-color: #1E1E1E;
    color: white;
}

.grid_cont {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
}

.outlined_cont {
    border-style: solid;
    border-width: 2px;
    border-color: #353535;
}

.grid_sect {
    margin: 5px;
    padding: 10px;
    position: relative;
}

.boxed_sect {
    border-style: solid;
    border-width: 2px;
    border-color: #353535;
    background-color: rgba(30, 30, 30, 0.85);
}

h1, h2, h3, h4, h5, h6 {
    padding-bottom: 3px;
    border-bottom-style: double;
    border-width: 7px;
    border-color: #5B5B5B;
}

h2 {
    border-width: 5px;
}

h3, h4, h5, h6 {
    border-width: 2px;
    border-bottom-style: solid;
}

a {
    font-family: "Times New Roman", serif;
    color: #C891FF;
}

.deadlink {
    color: #59476B;
}

p {
    padding-left: 10px;
    padding-right: 10px;

    border-left-style: solid;
    border-left-color: #5B5B5B;
    border-left-width: 2px;
    border-right-style: solid;
    border-right-color: #5B5B5B;
    border-right-width: 2px;
}

#sp {
    color: #C891FF;
}

.accordion {
    border-style: solid;
    border-width: 2px;
    border-color: #353535;
    background-color: rgba(30, 30, 30, 0.85);
    color: #C891FF;
    font-family: "Caudex", "Times New Roman", serif;
    font-size: 16px;

    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    transition: 1s;
}

.accordion:after {
    content: "\02795";
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
}

.active, .accordion:hover {
    background-color: rgba(100, 100, 100, 0.85);
    color: white;
}

.panel {
    border-style: solid;
    border-width: 2px;
    border-color: #353535;
    background-color: rgba(30, 30, 30, 0.85);

    padding: 0 18px;
    display: none;
    overflow: hidden;
}