body {
    background-color: #7300FE;
    margin: 0px;
    color: #FFF;
    font-family: Segoe UI, system-ui, -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1 {
    font-weight: 100;
    font-size: 50px;
    margin: 0px;
}

h2 {
    font-weight: normal;
    font-size: 24px;
    margin: 0px;
}

.metrowide {
    display: flex;
    width: 100%;
    aspect-ratio: 2.08 / 1;
    max-width: 416px;
    max-height: 200px;
    align-items: end;
}

.metrosq {
    display: flex;
    width: 47.6%;
    aspect-ratio: 1 / 1;
    max-width: 200px;
    max-height: 200px;
    align-items: end;
}

.metro {
    transition: 0.2s;
    font-size: 16px;
    font-weight: normal;
    scale: 1;
    box-sizing: border-box;
    padding: 14px;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.metro:hover {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.metro:active {
    scale: 0.97;
    transform: perspective(800px) rotate3d(1, 0, 0, -6deg);
}

.maininit {
    opacity: 0;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-200px);
}

.mainloaded {
    opacity: 1;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(0px);
}

.buttoninit {
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    scale: 0.5;
    transform: translateX(-200px);
}

.buttonloaded {
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    scale: 1;
    transform: translateX(0px);
}

.backnav {
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #7300FE;
    background-image: url('BackOutline.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.backnav:hover {
    background-image: url('BackFill.svg');
}