/*

welcome to this horrible mess!

table of contents:

1       - vanilla html elements
2       - material symbols
3       - mobile-like scrolling
4a      - formatting: text
4b      - formatting: miscellaneous
5a      - options: switches
6a      - webpage features: navigation
6b      - webpage features: miscellaneous
7a      - webpage contents: landing page
7b      - webpage contents: wrappers and containers
7c      - webpage contents: cards and similar
7d      - webpage contents: modals
7e      - webpage contents: buttons
8       - actual miscellaneous
9       - screen size formatting
10      - keyframe animations

*/

/* vanilla html elements */
html {
    --primarycolor: #ddd;
    --secondarycolor: #fff;
    --textcolor: #000;
    --accentcolor: #0080ff;
    --darkaccentcolor: #005abb;
    --settings-menu-transform: calc(var(--settings-menu-width) + 20px), calc(var(--header-height) + 10px);
    --hamburger-menu-transform: calc(var(--mobile-menu-width) + 20px), calc(var(--header-height) + 10px);
    font-family: Montserrat;
}

.dark-theme {
    --primarycolor: #2a2a2a;
    --secondarycolor: #000;
    --textcolor: #fff;
}

body {
    background-color: var(--secondarycolor);
    margin: 0 auto;
    position: relative;
}

.bg-transit {
    transition: background .5s ease !important;
}

.no-transit *:not(.blackenter), .no-transit::before, .no-transit::after {
    transition: none !important;
}

body.body-transit {
    transition: background .5s ease;
}

a {
    color: var(--textcolor);
    text-decoration: none;
    cursor: pointer;
    transition: .5s ease;
}

ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

ul a::after {
    bottom: 0;
    content: "";
    display: flex;
    height: 2px;
    position: absolute;
    background-color: var(--textcolor);
    width: 100%;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform .5s ease, background-color .5s ease;
}

ul a:hover::after {
    transform: scaleX(1);
}

li {
    position: relative;
}

header {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 10px;
    border-radius: 100vmax;
    z-index: 10;
    transition: .5s ease;
}

header.active {
    transform: translateY(calc(var(--header-height) * -1 - 20px));
    transition: .5s ease;
}

.header-content {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 50px;
    padding: 0 50px 10px 50px;
    transition: .5s ease;
}

.header-content-two {
    position: relative;
    display: inherit;
    flex-direction: row-reverse;
    overflow: hidden;
    width: calc(var(--pc-menu-width) + var(--navbar-width));
}

form {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

input, textarea, select {
    background-color: var(--secondarycolor);
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--textcolor);
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-radius: 1.5rem;
    padding: 10px 17px;
    resize: none;
    transition: .3s ease, background .5s ease, color .5s ease;
}

option {
    background-color: var(--secondarycolor);
    font-weight: 500;
    border: none;
    padding: 0 10px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--textcolor);
}

.select-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.select-icon {
    position: absolute;
    right: 10px;
    color: var(--textcolor);
    transition: .5s ease;
}

select {
    appearance: none;
}

button {
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    border: none;
    transition: .5s ease;
}

/* material symbols */
.material-symbols-rounded {
    font-variation-settings:
        'FILL' 0,
        'wght' 600,
        'GRAD' 0,
        'opsz' 48;
    font-size: 45px;
    user-select: none;
}

.material-symbols-rounded.fill {
    font-variation-settings:
    'FILL' 1;
}

.material-symbols-rounded.small {
    font-size: 30px;
}

/* mobile-like scrolling */
.x-scroll, .xy-scroll {
    overflow-x: auto;
}

.y-scroll, .xy-scroll {
    overflow-y: auto;
}

.x-scroll {
    overflow-y: hidden;
}

.y-scroll {
    overflow-x: hidden;
}

.x-scroll:not(.with-scrollbar), .y-scroll:not(.with-scrollbar),.xy-scroll:not(.with-scrollbar) {
    scrollbar-width: 0; 
}

.x-scroll:not(.with-scrollbar)::-webkit-scrollbar, .y-scroll:not(.with-scrollbar)::-webkit-scrollbar, .xy-scroll:not(.with-scrollbar)::-webkit-scrollbar { 
    display: none;
}

/* formatting: text */
h1, h2, h3, h4, p {
    position: relative;
    margin: 0;
    color: var(--textcolor);
    transition: color .5s ease;
    z-index: 1;
}

h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.3;
}

h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
}

h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 17px;
    font-weight: 500;
}

.text-center {
    text-align: center;
}

.text-margin-top {
    margin: 10px 0 0 0;
}

.text-margin-right {
    margin: 0 10px 0 0;
}

.text-margin-bottom {
    margin: 0 0 10px 0;
}

.text-margin-left {
    margin: 0 0 0 10px;
}

/* formatting: miscellaneous */
.five-px-drop-shadow {
    filter: drop-shadow(0 5px 5px #000000a0);
}

.ten-px-drop-shadow {
    filter: drop-shadow(0 5px 10px #000000a0);
}

.no-select {
    -webkit-user-select: none;
    user-select: none;
}

.absolute-pos {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.no-pointer-events {
    pointer-events: none;
}

/* options: switches */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nevergoezbadandsafetoeat {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.slider {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #606060;
    border-radius: 1.5rem;
    cursor: pointer;
}

.slider-toggle {
    position: absolute;
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    border-radius: 50%;
}

.switchcontainer:checked + .slider {
    background-color: var(--accentcolor);
}

.switchcontainer:checked + .slider .slider-toggle {
    -webkit-transform: translateX(26px);
    transform: translateX(26px);
}

.slider, .slider-toggle {
    transition: .5s ease;
}

/* webpage features: navigation */
.navbar {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0 15px;
    border-radius: 100vmax;
    background-color: var(--primarycolor);
    transition: .5s ease, border-radius .3s ease;
    z-index: 9;
}

.navbar a {
    display: flex;
    align-items: center;
    color: var(--textcolor);
    transition: .5s ease;
}

.navbar a.scrolled {
    color: var(--textcolor);
    transition: .5s ease;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: .5s ease;
}

.bar {
    display: block;
    width: 23px;
    height: 3px;
    justify-content: center;
    align-items: center;
    background-color: var(--textcolor);
    border-radius: 1.5rem;
    transition: .5s ease, opacity .5s ease;
}

.bar.scrolled {
    background-color: var(--textcolor);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobilehamburgermenu {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

.pchamburgermenu {
    overflow: hidden;
    background-color: var(--primarycolor);
    position: absolute;
    border-radius: 100vmax;
    display: flex;
    flex-direction: row;
    height: var(--header-height);
    transform: translate(calc(var(--pc-menu-width) - var(--navbar-width)), 0);
    transition: .5s ease;
    padding: 0 0 0 15px;
    gap: 15px;
}

.pchamburgermenu h4 {
    color: var(--primarycolor);
    padding: 5px;
    transition: .5s ease;
}

.pchamburgermenu.active {
    border-radius: 100vmax 0 0 100vmax;
    transform: translate(calc(var(--navbar-width) * -1), 0);
    transition: .5s ease;
}

.pchamburgermenu.active h4 {
    color: var(--textcolor);
    transition: .5s ease;
}

.pchamburgermenu.active + .navbar {
    border-radius: 0 100vmax 100vmax 0;
    transition: .5s ease;
}

.settings-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .5s ease;
    aspect-ratio: 1 / 1;
}

.settings-icon.active {
    transform: rotate(120deg);
}

.settingsmenu {
    overflow: hidden;
    background-color: var(--primarycolor);
    position: fixed;
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    margin: 10px;
    right: 0px;
    pointer-events: none;
    opacity: 0;
    transform: translate(0, calc(var(--header-height) + 10px)) scale(0.9);
    transition: .5s ease, transform .3s ease, opacity .3s ease;
    z-index: 9;
}

.settingsmenu.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(0, calc(var(--header-height) + 10px)) scale(1);
    transition: .5s ease, transform .3s ease, opacity .3s ease;
}

.menu-option {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.menu-option-2 {
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    user-select: none;
    padding: 0 30px;
}

.menu-option-2 span, .settings-icon span {
    color: var(--textcolor);
    transition: .5s ease;
}

/* webpage features: miscellaneous */
.blackenter {
    display: flex;
    pointer-events: all;
    justify-content: center;
    position: fixed;
    background-color: #000;
    height: 100lvh;
    width: 100vw;
    opacity: 1;
    z-index: 1000;
    transition: .3s ease-in-out;
}

.blackexit {
    display: flex;
    pointer-events: none;
    justify-content: center;
    position: fixed;
    background-color: #000;
    height: 100lvh;
    width: 100vw;
    opacity: 0;
    z-index: 1000;
    transition: .3s ease-in-out;
}

.mouse-blob {
    overflow: hidden;
    background-color: var(--accentcolor);
    height: 20vmax;
    width: 20vmax;
    position: absolute;
    left: 50%;
    right: 50%;
    translate: -50% -50%;
    opacity: 0;
    border-radius: 50%;
    filter: blur(5vmax);
    pointer-events: none;
    transition: opacity .5s ease;
    animation: mouseBlobRotate 20s ease-in-out infinite;
}

.progress-container {
    display: flex;
    width: calc(100% - 30px);
    height: 5px;
    margin: 5px 0 0 15px;
}

.scrollprogress {
    height: 100%;
    background-color: var(--accentcolor);
    border-radius: 1.5rem;
    width: 0%;
    transition: .3s cubic-bezier(0, 0, 0, 1);
}

.logo-container {
    display: flex;
    background-color: var(--primarycolor);
    border-radius: 100vmax;
    padding: 10px 20px;
    transition: .5s ease;
}

.logo {
    width: 120px;
    fill: var(--textcolor);
    transition: fill .5s ease;
    cursor: pointer;
}

.logo.special {
    fill: #fff;
    cursor: auto;
    transition: .3s ease;
}

/* webpage contents: landing page */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70%;
    height: auto;
    z-index: 0;
}

.afterhero {
    overflow: hidden;
    background-color: var(--secondarycolor);
    position: relative;
    z-index: 2;
    transition: .5s ease;
}

.blob-top {
    animation: heroBlobRotate 20s linear infinite;
    transform-origin: 13px 25px;
}

.blob-bottom {
    animation: heroBlobRotate 25s linear infinite;
    transform-origin: 84px 93px;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    mix-blend-mode: exclusion;
    transition: .5s ease;
}

.hero-bg.scrolled {
    opacity: 0;
}

.background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    width: 100%;
    position: relative;
    overflow-wrap: break-word;
    transition: .5s ease
}

#top.background {
    background-color: var(--secondarycolor);
}

.background.active {
    transform: scale(0.95);
}

.after-hero-bg {
    background-image: url('media/evomevologopattern.svg');
    background-size: 20vh;
    height: 100%;
    width: 100%;
    opacity: .2;
    position: absolute;
    transition: filter .5s ease;
}

.after-hero-bg.animate {
    animation: scrollPan 30s linear infinite;
}

/* webpage contents: wrappers and containers */
.wrapper {
    display: flex;
    flex-direction: column;
    border-radius: calc(1.5rem + 30px);
    background-color: var(--primarycolor);
    color: var(--textcolor);
    padding: 30px 30px;
    margin: 10% 0 10% 0;
    width: 70%;
    transition: .5s ease;
}

.card-wrapper {
    display: flex;
    overflow-x: scroll;
    border-radius: 1.5rem;
    margin: 10px 0 0 0;
    gap: 20px;
}

.card-wrapper-layout-2 {
    overflow-x: auto;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.gallerywrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 10px 0 0 0;
    gap: 20px
}

.gallerywrapper > *:not(.loadmorecontainer) {
    background-color: var(--secondarycolor);
    min-height: 100%;
    max-height: 50vh;
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: .5s ease, opacity .3s ease;
}

.gallerywrapper > a {
    opacity: 0;
}

.imagecontainer {
    display: none;
    transition: .5s ease;
    aspect-ratio: 1 / 1;
}

/* webpage contents: cards and similar */
.card {
    border-radius: 1.5rem;
    background-color: var(--secondarycolor);
    color: var(--textcolor);
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    padding: 30px 30px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    position: relative;
    transition: background .5s ease, color .5s ease;
}

.card-layout-2 {
    overflow: hidden;
    gap: 20px;
    align-items: flex-end;
    min-height: 20vh;
    min-width: 100%;
    position: relative;
}

.card-layout-2:not(.imagecontainer) {
    display: flex;
}

.card-layout-2 > * {
    color: #fff;
}

.card-layout-2 img {
    flex-shrink: 1;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    background-position: center;
    transition: .5s ease;
}

.card-layout-2:hover img {
    transform: scale(1.2);
}

#scroll .card-layout-2::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #000000d0 0%, #00000000 75%);
    z-index: 1;
}

#scroll h4 {
    filter: drop-shadow(0 0 5px #000);
}

.image {
    display: block;
    padding: 5px;
    box-sizing: border-box;
    object-fit: cover;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-color: var(--primarycolor);
    border-radius: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px;
    transition: .5s ease;
    pointer-events: none;
}

iframe {
    border-radius: 1.5rem;
}

.image.active {
    margin: 10px 0 0 0;
    max-width: 60vw;
    max-height: 70svh;
    padding: 10px;
    transition: .5s ease, background-color 0s linear;
    user-select: none;
}

.loadmorecontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 1.5rem;
    transition: background .5s ease, opacity .3s ease;
    aspect-ratio: 1 / 1;
}

/* webpage contents: modals */
.modal-container {
    pointer-events: none;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    background-color: #00000000;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    transition: .5s ease;
    z-index: 2;
}

.modal-container.active {
    background-color: #00000060;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.imagemodal .image {
    background-color: var(--primarycolor);
}

.imagemodal {
    display: flex;
    flex-direction: row;
    width: inherit;
    height: inherit;
    opacity: 0;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    transition: .5s ease;
}

.imagemodaldetails {
    max-width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    margin: 20px;
    overflow-wrap: anywhere;
}

.imagemodaldetails > * {
    color: #fff;
}

.closemodal {
    position: absolute;
    top: 30px;
    right: 30px;
}

/* webpage contents: buttons */
.button-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    margin: 10px 0 0 0;
    gap: 10px;
}

.button {
    overflow: hidden;
    border-radius: 10rem;
    background-color: var(--accentcolor);
    color: #fff;
    width: fit-content;
    padding: 10px 20px;
    cursor: pointer;
    user-select: none;
}

.button * {
    color: #fff;
}

.button.big {
    border-radius: 1.5rem;
    padding: 20px 40px;
}

.button.round {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    padding: 0;
    aspect-ratio: 1 / 1;
    z-index: 1;
}

.button.round.small {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
}

.hero-button {
    position: absolute;
    padding: 0 20%;
    bottom: 30px;
}

.backtotopbutton {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: scale(0);
    opacity: 0;
    transition: .5s ease;
    pointer-events: none;
    z-index: 2 !important;
}

.backtotopbutton.scrolled {
    transform: scale(1);
    opacity: 1;
    transition: .5s ease;
    pointer-events: all;
}

.button *::after {
    background-color: var(--textcolor);
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    transform-origin: top left;
    transition: transform .5s ease;
    mix-blend-mode: exclusion;
}

.button.big::after {
    border-radius: 1.5rem;
}

.button.big h4::after {
    height: calc(100% + 40px);
    width: calc(100% + 80px);
    border-radius: 1.5rem;
    transform: translate(calc(-101% - 40px), -20px);
}

.button p::after {
    height: calc(100% + 20px);
    width: calc(100% + 40px);
    border-radius: 3rem;
    transform: translate(calc(-101% - 20px), -10px);
}

.button span::after {
    border-radius: 50%;
    transform: translate(-101%, 0);
}

.button:hover {
    background-color: var(--darkaccentcolor);
}

body.no-transit .button:hover {
    background-color: var(--secondarycolor);
}

.button:hover *::after {
    transform: translate(-5%, -5%);
}

.button.big:hover h4::after {
    transform: translate(-40px, -20px);
}

.button:hover p::after {
    transform: translate(-20px, -10px);
}

.button:hover span::after {
    transform: translate(0, 0);
}

.button p, .button span {
    text-align: center;
    z-index: 1;
}

/* actual miscellaneous */
.wrapper-elem {
    background-color: var(--secondarycolor);
}

.bottom-card-elem {
    margin: 0 0 60px 0;
}

.shadow {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 30px 30px, rgba(0, 0, 0, 0.12) 0px -10px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 10px 15px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

/* screen size formatting */
@media screen and (max-width: 1000px) {
    .card-wrapper-layout-2 {
        grid-template-columns: 1fr 1fr;
    }

    .card:not(.card-layout-2) {
        min-width: fit-content;
    }

    .card-layout-2 h4 {
        overflow-wrap: anywhere;
    }

    .image.active {
        max-width: 90vw;
    }

    .imagemodal {
        flex-direction: column;
    }

    .imagemodaldetails {
        max-width: 100vw;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 700px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
        overflow-wrap: anywhere;
    }

    h3 {
        font-size: 25px;
        overflow-wrap: anywhere;
    }

    h4 {
        font-size: 20px;
        overflow-wrap: anywhere;
    }

    p {
        font-size: 15px;
    }

    .settingsmenu {
        position: fixed;
        opacity: 0;
        transform: translate(0, calc(var(--header-height) + 10px)) scale(0.9);
        transition: .5s ease, transform .3s ease, opacity .3s ease;
    }

    .pchamburgermenu {
        opacity: 0;
        pointer-events: none;
    }

    .mobilehamburgermenu {
        overflow: hidden;
        background-color: var(--primarycolor);
        border-radius: 1.5rem;
        margin: 10px;
        flex-direction: column;
        transform: translate(0, calc(var(--header-height) + 10px)) scale(0.9);
        transition: .5s ease, transform .3s ease, opacity .3s ease;
        z-index: 9;
        pointer-events: none;
        right: 0;
    }

    .pchamburgermenu.active + .navbar {
        border-radius: 100vmax;
    }

    .mobilehamburgermenu.active {
        opacity: 1;
        transform: translate(0, calc(var(--header-height) + 10px)) scale(1);
        transition: .5s ease, transform .3s ease, opacity .3s ease;
        pointer-events: all;
    }

    .settingsmenu.active {
        opacity: 1;
        transform: translate(0, calc(var(--header-height) + 10px)) scale(1);
        transition: .5s ease, transform .3s ease, opacity .3s ease;
    }

    .hero {
        min-width: 70%;
        max-width: 70%;
    }

    .card-wrapper-layout-2 {
        grid-template-columns: 1fr;
    }

    .gallerywrapper {
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .card {
        min-width: 100%;
    }

    .card-wrapper-layout-2 .button.big {
        min-width: 100%;
        box-sizing: border-box;
    }
}

/* keyframe animations */
@keyframes heroBlobRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes mouseBlobRotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: scale(1, 1.2) rotate(180deg);
    }

    100% {
        transform: rotate(359deg);
    }
}