html {
    font-family: Monospace;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 10px;
    width: 98%;
    height: 100%;
    color: #46954A;
    background-color: #22272E;
    font-size: 18px;
}

p {
    line-height: 1.4em;
}

a, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #349fba;
    font-weight: 700;
}

/* Column definitions */
#content {
    padding-bottom: 50px;
    padding-left: 20px;
    padding-top: 10px;
}
#main {
    margin-right:260px;
}
#menu {
    float: right;
    width: 220px;
    height: 100%;
    border-left: 2px dashed #46954A;
    padding-left: 18px;
    margin-top: 20px;
    padding-bottom: 250px; /* I swear this is temporary */
}

/* General purpose */
.hidden {
    display: none;
}
.center {
    text-align: center;
}
.small {
    font-size: 16px;
}
.smaller {
    font-size: 14px;
}
.mobile-only {
    display: none;
}


/* Heading */
.ascii-title {
    font-size: x-large;
    display: none;
}
.disable-anim {
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 0;
}

/* MAIN CONTENT */
.whoami {
    ul li {
        padding: 8px 0px;
    }
}


/* MENU */
.menu {
    h3 {
        margin-block-end: 0.7em;
    }
}
.exp-title {
    display: flex; 
    justify-content: space-between; 
    font-size: 20px;
    margin-top: 2.25em;
}
.menu .music {
    a {
        text-decoration: none;
    }
    .album-title {
        font-family: sans-serif;
        margin-bottom: 5px;
        font-size: 14px;
        color: #cccccc;
        font-weight: 400;
    }
    .artist {
        font-family: sans-serif;
        font-size: 12px;
        color: #cccccc;
        font-weight: 400;
    }
}
.socials {
    a {
        padding: 18px 8px;
    }
}
.mobile-menu {
    display: none;
}
.box {
    margin-bottom: 36px;
}


/* Cursor animation */
.blinking-cursor {
    font-weight: 100;
    font-size: 30px;
    color: #2E3D48;
    -webkit-animation: 1s blink step-end infinite;
    -moz-animation: 1s blink step-end infinite;
    -ms-animation: 1s blink step-end infinite;
    -o-animation: 1s blink step-end infinite;
    animation: 1s blink step-end infinite;
}
  
@keyframes "blink" {
    from, to {
        color: transparent;
    }
    50% {
        color: #46954A;
    }
}

@-moz-keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #46954A;
    }
}

@-webkit-keyframes "blink" {
    from, to {
        color: transparent;
    }
    50% {
        color: #46954A;
    }
}

@-ms-keyframes "blink" {
    from, to {
        color: transparent;
    }
    50% {
        color: #46954A;
    }
}

@-o-keyframes "blink" {
    from, to {
        color: transparent;
    }
    50% {
        color: #46954A;
    }
}

/* Breakpoints */

/* DESKTOP */
@media only screen and (min-width: 992px) {
    #menu {
        width: 320px;
    }
    #main {
        margin-right:300px;
        max-width:680px;
    }
    .disable-anim {
        margin-left: 45%;
    }
    .ascii-title-mobile {
        display: none;
    }
    .ascii-title {
        display: unset;
    }
}

/* FHD an bigger */
@media only screen and (min-width: 1360px) {
    #content {
        padding-left: 70px;
    }
    #menu {
        padding-right: 220px;
    }
    #main {
        max-width:900px;
    }
    .disable-anim {
        margin-left: 50%;
    }
}

/* MEDIUM */
@media only screen and (max-width: 992px) {
    .ascii-title-mobile {
        font-size: x-large;
    }
}

/* SMALL DEVICES */
@media only screen and (max-width: 600px) {
    #menu {
        display: none;
    }
    #main {
        margin-right: 20px;
    }
    .ascii-title-mobile {
        font-size: medium;
    }
    .mobile-only {
        display: unset;
    }
    .mobile-menu {
        display: flex;
        justify-content: space-around;
    }
}