main {
    max-width: 777px;
    padding: 0 16px;
    margin: 0 auto;
    font-size: 16px;
    padding-bottom: 112px;
    
}
@media (min-width: 50em) {
    main {
        padding: 0 64px;
        padding-bottom: 128px;
    }
}

header {
    max-width: 777px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 8px;
}
@media (min-width: 50em) {
    header {
        padding-top: 32px;
        margin-bottom: 56px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 48px;
    width: 100%;
    cursor: pointer;
}
@media (min-width: 50em) {
    .logo-container {
        height: 80px;
    }
}

.demon {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    will-change: transform;
    width: 74px;
    height: 124px;
    flex-shrink: 0;
    background-color: black;
    display: none;
}
.demon::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    background: radial-gradient(circle, transparent 60%, red 90%);
}
@media (min-width: 50em) {
    .demon {
        display: block;
    }
}
.demon video {
    border-radius: 50%;
    width: 74px;
    height: 124px;
}
.demon .border {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -16px;
    right: -16px;
    background: transparent;
    border: 1px dashed rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    animation: Rotate;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.demon .border.alt {
    height: 75%;
    top: 13%;
    animation-duration: 2s;
    border-color: rgb(217, 0, 255, 0.6);
}

@keyframes Rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

footer {
    background-color: black;
    width: 100%;
    height: 48px;
    border-top: 3px double white;
    padding: 0 16px;
    box-sizing: border-box;
}
footer > :first-child {
    max-width: 777px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    .copyright {
        color: white;
        text-align: right;
    }

    .links {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        a {
            color: white;
            text-decoration: none;
            transition: color 0.111s ease-out;
            padding: 10px;
            &.soundcloud:hover {
                color: #f26f23;
            }
            &.bandcamp:hover {
                color: #629aa9;
            }
            &.spotify:hover {
                color: #1db954;
            }
            &.instagram:hover {
                color: #e1306c;
            }
        }
    }

    #y3k {
        height: 80%;
        img {
            height: 100%;
        }
    }
}

.logo {
    position: absolute;
    height: 100%;
    z-index: 100;
}

.shake1 {
    animation: shake1 0.8s linear infinite;
}

.shake2 {
    animation: shake2 0.14s linear infinite;
}

@keyframes shake1 {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@keyframes shake2 {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(18px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(-10px);
    }
}

#matrix {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
    top: 0;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

section {
    border: 3px double white;
    color: white;
    max-width: 777px;
    margin: 0 auto;
    margin-bottom: 56px;
    padding: 16px;
    background: rgba(15, 0, 10, 0.85);
}
h2 {
    margin-top: -26px;
    margin-left: -8px;
    background-color: black;
    width: fit-content;
    padding: 0 8px;
    font-family: kanada;
}

.profile-pic {
    width: 197px;
    height: 197px;
    position: relative;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}
.profile-pic::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    background: radial-gradient(circle, transparent 60%, black 90%);
}

.profile-pic .border {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    border: 2px dashed #0f0;
    border-radius: 50%;
    animation: Rotate;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

h1 {
    text-align: center;
    width: 100%;
}

.profile-row {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    @media (min-width: 50em) {
        flex-direction: row;
        align-items: flex-start;
        gap: 64px;
    }
}

.about {
    margin-bottom: 32px;
    line-height: 1.5;
    text-align: center;
}

a {
    color: #0f0;
}

.glow {
    font-weight: bold;
    letter-spacing: 2px;
    color: #0f0;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #0f0;
    }
    to {
        text-shadow: 0 0 30px #0f0, 0 0 10px #009700;
    }
}



.album-wrapper {
    width: 100%;
}
@media (min-width: 50em) {
    .album-wrapper {
        width: unset;
    }
}
.album {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    background-size: cover;
    transform-style: preserve-3d;
    transform: perspective(1000px);

    &.clickable {
        cursor: pointer;
    }

    @media (min-width: 50em) {
        width: 356.5px;
        height: 356.5px;
        padding: 0;
    }

    &:hover {
        z-index: 999;
    }

    // > iframe {
    // 	border: 0;
    // 	width: 100%;
    // 	height: 100%;
    // }

    > video {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateZ(100px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        color: white;
        text-decoration: none;

        h3 {
            font-size: 22px;
            letter-spacing: 7px;
            text-shadow: 0px 2px 2px black;
            margin: 0;
            max-width: 80%;
            text-align: center;

            @media (min-width: 50em) {
                font-size: 27px;
            }
        }

        .release-date {
            margin: 0;
            margin-bottom: 16px;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
            text-shadow: 0px 2px 2px black;
            color: #0f0;
        }
    }

    .overlay {
        background-color: rgba(0, 0, 0, 0.777);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
}

.music {
    display: grid;
    justify-content: center;
    gap: 16px;
    grid-template-columns: 1fr;
    @media (min-width: 50em) {
        grid-template-columns: 1fr 1fr;
    }
}

.experiences {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 50%;
    background-size: cover;
    transform-style: preserve-3d;
    transform: perspective(1000px);

    &:hover {
        z-index: 999;
    }

    > video {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateZ(100px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        color: white;
        text-decoration: none;

        h3 {
            font-size: 27px;
            letter-spacing: 7px;
            text-shadow: 0px 2px 2px black;
            margin: 0;
        }

        .release-date {
            margin: 0;
            margin-bottom: 16px;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
            text-shadow: 0px 2px 2px black;
            color: #0f0;
        }
    }

    .overlay {
        background-color: rgba(0, 0, 0, 0.777);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
}

.log-content {
    h1 {
        font-family: monospace;
    }
    h2 {
        margin: unset;
        margin-top: 64px;
    }
    h3 {
        margin: unset;
    }
}

.fulldarkbg {
    background: black;
}