@font-face {
  font-family: AbhayaLibre; /* set name */
  src: url("/assets/AbhayaLibre-ExtraBold.ttf"); /* url of the font */
}
:root {
    --primary-color: #fc4747;
    --primary-color-bright: #ff1b1f;
    --primary-color-dull: #ec2d31;
    --secondary-color: #0b0d0e;
}

* {
    font-family: AbhayaLibre;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    list-style: none;
    letter-spacing: 1px;
    word-spacing: 5px;
}
h1{
    font-size:2.5em;
}
h2{
    font-size:2em;
}
h3{
    font-size:1.5em;
}
h4{
    font-size:1.25em;
}
h5{font-size:1.25em;}
a {
    color: var(--primary-color-bright)
}

hr {
    padding-left: 1000px;
    margin-bottom: 2.5vh;
    margin-top: 1vh;
}

br {
    margin: 1.5vh;
}

body {
    background-color: var(--secondary-color);
    height: 75vh;
    width: 100vw;
}

.centerBoxV {
    display: flex;
    align-content: center;
    align-items: center;
    height: 100%;
}

.centerBoxH {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
}
.articleHolder{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin-top:3em;
    width:85vw;
    margin-left:auto;
    margin-right:auto;
    height:300%;
}
.article{
    border-right:0.3em solid #fc4747;
    border-left:0.3em solid #fc4747;
    border-top:0.3em solid #fc4747;
    border-bottom:0.3em solid #fc4747;
    padding:1em;
    padding-bottom:5em;
    width:75vw;
    padding-top:2.5em;
    height:300%;
}
.subParagraphHeader{
    margin-top:0.5em;
}
.subParagraphSquared{
    margin-left:0.5em;
}
.centertext{text-align: center;}
.articleBox {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
    margin-top: 6.5em;
}
.articleBoxGarnish{position:absolute;height:2.9em;margin-top:-1.2em;z-index:0}

.articleText {
    color:white
}
p {
    font-size: 35px;
}

.indent {
    padding-left: 2vw;
}
.dropdownarrow{
    font-size:0.6em;
    color:#e73235;
}
.dropdown:hover{cursor:default;}
.dropdown:hover .dropdownarrow{
    display:inline-block;
    transform: rotate(180deg);
}
.dropdown:hover .dropdownC {display: flex;}
.dropdownC:hover{cursor:default}
.dropdownC {
  display: none;
  position: absolute;
  background-color: #030303;
  width:10em;
  height:min-content;
  border:1px solid white;
  z-index: 1;
  font-size:20px;
}
.dropdownBox {
    display:flex;
    flex-direction:column;
    height:min-content;
    margin:10px;
}
.dropdownLink{
    margin-top:5px;
}
.navbar {
    display: block;
    width: 100vw;
    height: 2em;
    font-size: clamp(5px, 1.8em, 25px);
    background-color: rgb(8, 8, 12);
    -webkit-box-shadow: 0px 13px 5px -2px rgb(0, 0, 0);
    box-shadow: 0px 13px 5px -2px rgb(0, 0, 0);
    position: sticky;
    top: 0;
    z-index:2;
}
.navChild {
    margin-left: 1em;
    text-decoration: none;
    color: #fc282b;
}