#logo-section {
    background: radial-gradient(circle, #07080D 0%, #07080a 100%);
    position: sticky;
    top: -1px;
    z-index: 1;
}

.page-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 2em 0 2em 0;
    align-items: center;
    margin: 1em;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 1em;
    border-top: rgba(255, 255, 255, 0.04) solid 1px;
    transition: 0.1s ease-out;
}

.page-row:hover {
    background-color: rgba(0, 0, 0, 0.4);
    border-top: rgba(255, 255, 255, 0.2) solid 1px;
}

.page-row.dark:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.page-row p {
    width: 50%;
    padding: 1em;
    text-align: justify;
}

h2 {
    font-size: 3em;
    transition: 360ms;
    text-align: center;
    margin: 0.65em;
}

#mug-mash h2 {
    background-image: linear-gradient(30deg, rgb(171, 231, 237) 0%, rgb(235, 251, 252) 100%);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-family: Rubik;
}

#mug-mash h2:hover {
    transform: scale(1.2);
}

h2 a:link,
h2 a:visited,
h2 a:hover,
h2 a:active {
    text-decoration: none;
    color: var(--offwhite);
}

#mug-mash h2 a:link,
#mug-mash h2 a:visited,
#mug-mash h2 a:hover,
#mug-mash h2 a:active {
    color: transparent;
}

#sketches-row h2:hover {
    transform: scale(1.2);
}

.svg-link {
    cursor: pointer;
    margin: 1em;
}

.svg-link path {
    fill: rgb(196, 196, 196);
}

.svg-link:hover path {
    fill: white;
}

img.svg-link {
    filter: brightness(76.86%);
}

img.svg-link:hover {
    filter: brightness(100%);
}

.itch-iframe {
    width: 552px;
}

@media (orientation: portrait) {
    .page-row {
        flex-direction: column;
    }
    .page-row p {
        width: auto;
        margin: 1em;
    }
    .itch-iframe {
        width: 60%;
    }
}