html {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

main {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section {
    width: 100%;
    height: fit-content;
}

.blank {
    width: 100%;
    height: 500px;
    margin-top: 50px;
}

.flipX {
    rotate: 180deg;
}

.flipY {
    rotate: 90deg;
}

.black {
    filter: brightness(0) invert(0);
}

.white {
    filter: brightness(0) invert(1);
}

.hide {
    position: absolute;
    margin-top: -500vh;
}

ul {
    padding: 0px;
    margin: 0px;
}

.n {
    display: none !important;
}

img,
video {
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    pointer-events: none;
}

.pe-on {
    pointer-events: auto !important;
}