﻿.main-page {
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.main-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.titlescreen-bg {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(.15) saturate(.8);
}

.titlescreen-bg-mobile {
    position: absolute;
    inset: 0;
    width: 100vh;
    height: 100vw;
    object-fit: cover;
    z-index: -1;
    filter: brightness(.15) saturate(.8);
    transform: translate(-50%,-50%) rotate(90deg);
}

.main-body {
    position: relative;
    z-index: 2;
}

.fancy-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3) 50%, transparent);
    margin: 1rem;
}