/* Config */

:root {
    --primaryBg: #272635;
    --secondaryBg: #29263f;
    --seperator: #545170;
    --containerBg: #7180B8;
}

/* Setup */

body {
    min-height: 130vh;
    margin: 0;
    background-color: var(--primaryBg);
    color: #faf6f6;
    font-size: 24px;
    font-family: "ellograph-cf", monospace;
    font-weight: 400;
    font-style: normal;
    display: flex;
    flex-direction: column;
}

main {
  flex: 1;
}

h3 {
    margin: 0;
    padding: 0;
    font-size: 1.25em;
}

p {
    margin: 0;
    padding: 0;
}
/* NavBar */

.navBar {
    height: 5em;
    background-color: var(--secondaryBg);
    border-bottom: solid 0.125em var(--seperator);
    margin-bottom: 3em;
    padding-left: 5em;
    padding-right: 5em;
}

.navImg {
    position: absolute;
    top: 0.5em;
    width: auto;
    height: 6em;
}

.navSocials {
    position: relative;
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2em;
}

.socialLogo {
    width: 2em;
}

/* Footer Bar */

.footerBar {
    padding-right: 3em;
    height: 30vh;
    background-color: var(--secondaryBg);
    border-top: solid 0.125em var(--seperator);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footerImg {
    height: 26vh;
    opacity: 10%;
}

.footerText {
    position: relative;
    float: right;
    display: flex;
    gap: 6em;
}

/* sections */

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding-bottom: 1em;
}
.titleLogo {
    height: 30vh;
}
.titleTitle {
    position: relative;
    top: -30px;
}
.titleQuote {
    position: relative;
    top: -60px;
    text-align: center;
    font-style: italic;
    font-size: 0.8em;
}
.titleParagraph {
    position: relative;
    bottom: 50px;
}

.titleNav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5em;
    padding-bottom: 3em;
}

/* container */

.topButton {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    font-size: 1em;
    background-color: var(--secondaryBg);
    border-color: var(--seperator);
    border-radius: 30px;
}
.topButton:hover {
    background-color: var(--containerBg);
}

.container {
    background-color: var(--containerBg);
}

.cLeft {
    position: absolute;
    transform: translate(-50%,0);
    left: 0%;
    aspect-ratio: 1;
    max-width: 20em;
}

.cRight {}

/* testing */

.cBox {
    width: 5em;
    height: 2em;
}

.a { background-color: #F63E02;}
.b { background-color: #DABFFF;}
.c { background-color: #74B3CE;}
.d { background-color: #DE4D86;}
.e { background-color: #7180B8;}
.f { background-color: #9A031E;}
