body {
    background-color: rgb(53, 40, 52);
    font-family: Arial, Helvetica, sans-serif;
}

.name {
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 192, 203, 0.75);
    color: white;
}

.menubar {
    position: fixed;
    top: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    min-height: 40px;
    height: 3vw;
    background-color: rgb(39, 30, 38);
    border-radius: 10px;
}
.logo {
    position: relative;
    top: 10%;
    left: 10px;
    height: 80%;
    aspect-ratio: 1 / 1;
}
.logo img {
    width: 100%;
    height: 100%;
}
.logo .name {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: calc(100% + 5px);
    font-size: 1.5em;
}

.charli_waving_img {
    position: absolute;
    top: -15vw;
    left: 50%;
    height: 15vw;
    transform: translate(-50%, 0);
}
.text_section_1 {
    position: absolute;
    padding: 10px;
    color: rgb(204, 176, 202);
    top: calc(3vw + 20px + 15vw + 5vh);
    left: 10px;
    background-color: rgb(39, 30, 38);
    border-radius: 10px;
    max-width: calc(100vw - 40px);
    width: 400px;
    height: auto;
}

.art_showcase {
    position: absolute;
    left: 440px;
    top: calc(3vw + 40px);
    width: calc(100vw - 460px);
    height: calc(15vw + 5vh + 3.5em - 10px);
    background-color: rgb(39, 30, 38);
    border-width: 5px;
    border-style: solid;
    border-color: rgb(39, 30, 38);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}
.art_strip {
    animation: scroll-left 20s linear infinite;
    width: max-content;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.artwork {
    height: 100%;
    opacity: 0.5;
    transition: opacity 150ms;
}
.artwork:hover {
    opacity: 1;
    cursor: pointer;
}
.artwork_image {
    height: 100%;
}
.artwork_creator {
    position: relative;
    top: -2em;
    left: 1em;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 112, 136, 0.75);
    color: white;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}