:root {
    --theme-purple: #8365e7;
    --theme-medium-purple: #879be4;
    --theme-light-blue: #8bd3e1;
}

body {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Trebuchet MS", sans-serif;
}

p {
    font-family: "Georgia", serif;
}

#header-purple {
    min-height: 50px;
    background-color: var(--theme-purple);
}

#header-full-image {
    min-height: 50px;
    background-color: var(--theme-purple);
}

.body-image {
    width: 100%;
}

.content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 800px;
}

.page-black {
    color: aliceblue;
    background-color: black;
    min-height: 100vh;
    min-width: 100vw;
}

.page-white {
    background-color: white;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-black {
    background-color: black;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header-image {
    min-width: 100%;
    max-height: calc(200px + 10vw);
    object-fit: cover;
}

.sample-block {
    height: 50px;
    width: 50px;
    background-color: #8365e7;
}

.centered-image {
    text-align: center;
}

.narrow {
    max-width: 250px;
}

@media screen and (max-width: 900px) {
    .content {
        width: 90vw;
    }
}

/* start logo animation */

.logo-middle {
    display: flex;
}

.rect-center {
    width: 300px;
    height: 300px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rect-left {
    width: 5px;
    height: 150px;
    background: linear-gradient(var(--theme-light-blue), var(--theme-medium-purple));
    transform-origin: bottom;
    animation: fillVertical 0.25s linear both;
}

.rect-top {
    width: 310px;
    height: 5px;
    background-color: var(--theme-light-blue);

    transform-origin: left;
    animation: fillHorizontal 0.5s linear both;
    animation-delay: 0.25s;
}

.rect-right {
    width: 5px;
    height: 300px;
    background: linear-gradient(var(--theme-light-blue), var(--theme-purple));

    transform-origin: top;
    animation: fillVertical 0.5s linear both;
    animation-delay: 0.75s;
}

.rect-bottom {
    width: 160px;
    height: 5px;
    background-color: var(--theme-purple);
    margin-left: 150px;

    transform-origin: right;
    animation: fillHorizontal 0.25s linear both;
    animation-delay: 1.25s;
}

.logo-text {
    font-size: 90px;
    font-family: "Trebuchet MS", sans-serif;
    font-weight: lighter;
    background-image: linear-gradient(to right, var(--theme-purple), var(--theme-light-blue));
    color: transparent;
    background-clip: text;
}

@keyframes fillVertical {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

@keyframes fillHorizontal {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* end logo animation */