:root {
    --clr-txt-100: #FFFFFF;
    --clr-accent-100: #F8BBD0;
    --clr-accent-200: #B3E5FC;
    --clr-accent-300: #C8E6C9;
    --clr-accent-400: #FFE0B2;
    --clr-neutral-100: #262626;
    --clr-black-900: #000000;
    --ff-primary: "DM Mono", monospace;
    --ff-body: var(--ff-primary);
    --ff-heading: var(--ff-primary);
    --fs-title: 1.25rem;
    --fs-cmd: 0.875rem;
    --fs-ascii: 0.65rem;
    --fs-side: 2.25rem;
    --fs-top: 1.5rem;
}

/* https://piccalil.li/blog/a-modern-css-reset */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

/* Set core body defaults */
body {
    background: var(--clr-background-900);
    color: var(--clr-txt-100);
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg,
png {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Utility classes */

.dm-mono-medium {
    font-family: "DM Mono", monospace;
    font-weight: 500;
    font-style: normal;
}
.clr-txt-100 {
    color: var(--clr-txt-100)
}
.clr-accent-100 {
    color: var(--clr-accent-100)
}
.clr-accent-200 {
    color: var(--clr-accent-200)
}
.clr-accent-300 {
    color: var(--clr-accent-300)
}
.clr-accent-400 {
    color: var(--clr-accent-400)
}
.clr-neutral-100 {
    color: var(--clr-neutral-100)
}
.clr-black-900 {
    color: var(--clr-black-900)
}
.bg-neutral-100 {
    background: var(--clr-neutral-100)
}
.bg-black-900 {
    background: var(--clr-black-900)
}

/*style*/
.header {
    height: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /*place-items: center;
    left: 1rem;
    top: 2%;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
    width: 80%;
    width: 93.75rem;
    height: 9.375rem;
    top: 1.25rem;
    left: 13.125rem;*/
    background: var(--clr-neutral-100);
    /*color: var(--clr-txt-100);
    border-radius: 0.5rem;
    box-sizing: content-box;
    position: fixed;*/
}

.logo {
    /*justify-content: flex-start;
    border: 1px solid #ddd;
    border-radius: 4px;
    left: 20%;*/
    width: 4.5%;
    padding: 0.3%;
}

.ascii {
    font-family: monospace;
    white-space: pre;
    line-height: 1.3;
    font-size: var(--fs-ascii);
}

.menu {
    font-family: "DM Mono", monospace;
    font-size: var(--fs-top);
    padding: 10%;;
    /*left: 50%;
    display: inline;
    justify-content: flex-end;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: right;
    flex-grow: 1;
    right: 10%;*/
}

.menu1 {
    color: var(--clr-txt-100);
    text-decoration: underline;
    text-decoration-color: var(--clr-accent-100);
    /*flex-basis: auto;
    flex-grow: 1;
    top: 6.48%;
    left: 15.625%;
    display: inline;
    display: flex;
    justify-content: center;
    position: fixed;*/
}

.menu1:hover {
    color: var(--clr-accent-100);
}

.menu2 {
    color: var(--clr-txt-100);
    text-decoration: underline;
    text-decoration-color: var(--clr-accent-200);
    /*flex-basis: auto;
    top: 6.48%;
    left: 33.3%;
    display: inline;
    top: 4.375rem;
    left: 40rem;
    position: fixed;*/
}

.menu2:hover {
    color: var(--clr-accent-200);
}

.menu3 {
    color: var(--clr-txt-100);
    text-decoration: underline;
    text-decoration-color: var(--clr-accent-300);
    /*flex-basis: auto;
    top: 6.48%;
    display: inline;
    top: 4.375rem;
    left: 58.75rem;
    position: fixed;*/
}

.menu3:hover {
    color: var(--clr-accent-300);
}

.menu4 {
    color: var(--clr-txt-100);
    text-decoration: underline;
    text-decoration-color: var(--clr-accent-400);
    /*flex-basis: auto;
    top: 6.48%;
    display: inline;
    top: 4.375rem;
    left: 86.875rem;
    position: fixed;*/
}

.menu4:hover {
    color: var(--clr-accent-400);
}

.title {
    font-family: "DM Mono", monospace;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 1;
    width: 8rem;
    height: 85%;
    top: 10%;
    left: 1%;
    background: var(--clr-neutral-100);
    color: var(--clr-txt-100);
    border-radius: 0.5rem;
    box-sizing: border-box;
    position: fixed;
}

.ascii-a {
    /*font-family: monospace;*/
    white-space: pre;
}

.ascii-d {
    /*font-family: monospace;*/
    white-space: pre;
}

.ascii-p {
    /*font-family: monospace;*/
    white-space: pre;
}

.ascii-k {
    /*font-family: monospace;*/
    white-space: pre;
}

.socials {
    font-family: "DM Mono", monospace;
    font-size: var(--fs-side);
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    /*flex-grow: 1;*/
    width: 4.5rem;
    height: 40%;
    top: 30%;
    right: 1%;
    /*width: 93.75rem;
    height: 9.375rem;
    top: 1.25rem;
    left: 13.125rem;*/
    background: var(--clr-neutral-100);
    color: var(--clr-txt-100);
    border-radius: 0.5rem;
    box-sizing: border-box;
    position: fixed;
    /*transform: rotate(90deg);*/
}

/*.soc1 {
    /*transform-origin: 0 0;
    transform: rotate(90deg);
}

.soc2 {
    /*transform-origin: 0 0;
    transform: rotate(90deg);
}

.soc3 {
    /*transform-origin: 0 0;
    transform: rotate(90deg);
}

.soc4 {
    /*transform-origin: 0 0;
    transform: rotate(90deg);
}

.soc5 {
    /*transform-origin: 0 0;
    transform: rotate(90deg);
} */

.content {
    font-family: "DM Mono", monospace;
    /* flex: 1;
    padding: 1.25rem;
    box-sizing: border-box;
    margin-left: 12.5rem;
    text-align: justify;*/
    width: 90%;
    height: 80%;
    top: 15%;
    left: 3%;
    background: var(--clr-neutral-100);
    color: var(--clr-txt-100);
    border-radius: 0.5rem;
    box-sizing: border-box;
    position: fixed;
}

#Blink {
    color: var(--clr-txt-100);
    animation: blinking 1s linear infinite;
}

@keyframes blinking {
    50% {
        opacity: 0;
    }
}

.cmd {
    font-size: var(--fs-cmd);
    width: 40%;
    height: 70%;
    top: 20%;
    left: 5%;
    background: var(--clr-black-900);
    color: var(--clr-txt-100);
    box-sizing: border-box;
    position: fixed;
}
