@media only screen and (max-width: 1386px) {
    #discord {
        width: 50vw !important;
        margin-inline: auto !important;
    }

    .main {
        flex-flow: column nowrap !important;
    }

    h1 {
        font-size: 3vw !important;
    }

    #discord span {
        font-size: 3vw !important;
    }

    body {
        overflow-y: scroll !important;
    }

    button {
        font-size: 3vw !important;
    }

    p {
        font-size: 4vw !important;
    }

    #bgVideo {
        object-fit: cover !important;
    }

    a {
        font-size: 4vw;
    }
}

@media only screen and (max-width: 1383px) {
    #info {
        padding: 10px !important;
        height: auto !important;
        transform: translateY(25%);
    }

    .info {
        flex-flow: column nowrap !important;
    }

    #hr-vert {
        display: none;
    }

    li {
        margin: 0 !important;
    }
}

@media only screen and (min-width: 500px) {
    #discord a {
        font-size: 18px !important;
    }

    #discord {
        margin-inline: auto !important;
    }
}

@font-face {
    font-family: 'UM Typewriter';
    src: url('../fonts/UMTypewriter-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UM Typewriter';
    src: url('../fonts/UMTypewriter.woff2') format('woff2'),
        url('UMTypewriter.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background: #020202;
    padding: 0;
    margin: 0;
    font-family: "UM Typewriter";
}

a {
    text-decoration: none;
    color: #f0f0f0;
    text-shadow: 0 0 5px #f0f0f0c0;
}

a:hover {
    cursor: pointer;
}

#bgVideo {
    position: fixed;
    z-index: -2;
    opacity: 0%;
    transition: opacity 1s;
    object-fit: fill;
    height: 100vh;
    width: 100vw;
}

#bgVideo.active {
    opacity: 25%;
}

#hr {
    position: relative;
    margin: auto;
    border-width: 0px;
    width: 93vw;
    height: 2px;
    background: #FDE4F2;
    background: -webkit-linear-gradient(90deg, rgba(253, 228, 242, 0) 0%, rgba(253, 228, 242, 1) 50%, rgba(253, 228, 242, 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(253, 228, 242, 0) 0%, rgba(253, 228, 242, 1) 50%, rgba(253, 228, 242, 0) 100%);
    background: linear-gradient(90deg, rgba(253, 228, 242, 0) 0%, rgba(253, 228, 242, 1) 50%, rgba(253, 228, 242, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
        startColorstr="#FDE4F2", 
        endColorstr="#FDE4F2", 
        GradientType=1
        );
    z-index: 1;
    opacity: 0%;
    transition: opacity 1s;
}

#hr::before {
    width: 93vw;
    height: 4px;
    content: "";
    position: absolute;
    transform: translate(0, -1px); 
    z-index: -1; 
    background: #fde4f2BF;
    background: -webkit-linear-gradient(90deg, rgba(253, 228, 242, 0) 0%, rgba(253, 228, 242, 0.75) 50%, rgba(253, 228, 242, 0) 100%);
    background: -moz-linear-gradient(90deg, rgba(253, 228, 242, 0) 0%, rgba(253, 228, 242, 0.75) 50%, rgba(253, 228, 242, 0) 100%);
    background: linear-gradient(90deg, rgba(253, 228, 242, 0) 0%, rgba(253, 228, 242, 0.75) 50%, rgba(253, 228, 242, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FDE4F2", endColorstr="#FDE4F2", GradientType=1);
    filter: blur(3px);
}

#hr.active {
    opacity: 100%;
}

#header {
    width: 100vw;
    height: 10vh;
    color: #f0f0f0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    font-size: 30px;
    opacity: 0%;
    transition: opacity 1s, height 1s;
}

#header.active {
    padding-top: 52px;
    opacity: 100%;
    height: 13vh;
}

h1 {
    color: #fde4f2;
    font-size: 72px;
    text-shadow: 0 0 5px #f9cee7;
    display: inline;
}

#time {
    margin: 0;
    float: right;
    opacity: 0%;
    transition: opacity, 1s;
    position: absolute;
    top: 30px;
    right: 30px;
    color: #f0f0f0;
    text-shadow: 0 0 3px #f0f0f0;
}

#time.active {
    opacity: 100%;
}

.main {
    display: flex;
    height: 81.6vh;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 5vh 0 0;
}

#discord {
    width: 20vw;
    height: 20vh;
    border: 1px solid #f0f0f04b;
    box-shadow: 0 0 5px #f0f0f04b;
    border-radius: 10px;
    background: #020202;
    background: -webkit-linear-gradient(165deg, rgba(2, 2, 2, 1) 0%, rgba(13, 13, 13, 1) 100%);
    background: -moz-linear-gradient(165deg, rgba(2, 2, 2, 1) 0%, rgba(13, 13, 13, 1) 100%);
    background: linear-gradient(165deg, rgba(2, 2, 2, 1) 0%, rgba(13, 13, 13, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020202", endColorstr="#0D0D0D", GradientType=0);
    display: flex;
    transition: box-shadow 0.5s, border 0.5s;
    align-items: flex-start;
    font-size: 36px;
    flex-flow: column nowrap;
}

.content {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

code {
    user-select: all;
    -webkit-user-select: all;
    border: 1px solid #a3a3a32c;
    border-radius: 5px;
    padding: 5px;
    background-color: #44444423;
}

#discord:hover {
    box-shadow: 0 0 5px #f0f0f08a;
    border: 1px solid #f0f0f08a;
}

.avatar {
    margin: 0;
    width: 100%;
    height: 45%;
    border-bottom: 1px solid #f0f0f0;
}

.avatar img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0%, 10%;
}

#discord button {
    margin-right: 30px;
    border: 1px solid #f0f0f0;
    background-color: #1d1d1d;
    color: #f0f0f0;
    font-family: "UM Typewriter";
    font-size: 30px;
    padding: 10px;
    border-radius: 10px;
    text-shadow: 0 0 5px #f0f0f0;
    box-shadow: 0 0 5px #f0f0f0;
    transition: box-shadow 0.5s, scale 0.5s;
    line-height: 30px;
    margin: auto;
}

#discord button:hover {
    scale: 110%;
    box-shadow: 0 0 10px #f0f0f0;
}

.space {
    flex-grow: 1;
}

.item {
    margin-inline: 5vw;
    height: 50px;
    width: 50px;
}

button:hover {
    cursor: pointer;
}

#discord span {
    font-size: 30px;
    color: #f0f0f0;
    text-shadow: 0 0 5px #f0f0f0c0;
}

#play {
    position: absolute; 
    top: 30px; 
    left: 30px; 
    font-size: 16px !important;
}

#discord #hr::before {
    width: 100%;
}

#discord #hr {
    margin-top: 10px;
    margin-bottom: 10px !important;
}

#cover {
    position: absolute;
    background-attachment: fixed;
    background-color: #020202b6;
    height: 100vh;
    width: 100vw;
    z-index: 5;
    top: 0;
    display: none;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

#info {
    height: 75vh;
    background: #020202;
    border: 1px solid #f0f0f04b;
    border-radius: 20px;
    box-shadow: 0 0 2px #f0f0f0;
    width: 50vw;
    padding: 50px;
    z-index: 2;
    display: flex;
    flex-flow: column nowrap;
}

#info #hr {
    margin: 15px auto 15px;
    width: 90%;
}

#info #hr::before {
    width: 100%;
}

.tiername button {
    height: 30px;
    width: 30px;
    background: none;
    border: none;
    float: right;
}

.tiername button:hover {
    cursor: pointer !important;
}

.tiername button img {
    max-width: 100%;
    max-height: 100%;
    filter: invert(100%);
}

#cover button:hover {
    cursor: context-menu;
}

.info {
    flex-grow: 1;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
}

.info-1 {
    height: 100%;
    flex-grow: 4;
}

.info-2 {
    height: 100%;
    flex-grow: 3;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-flow: column nowrap;
}

#hr-vert {
    height: 100%;
    width: 2px;
    background: #FDE4F2;
    background: -webkit-linear-gradient(180deg, rgba(253, 228, 242, 0) 0%,  rgba(253, 228, 242, 1) 20%, rgba(253, 228, 242, 0) 100%);
    background: -moz-linear-gradient(180deg,  rgba(253, 228, 242, 0) 0%,  rgba(253, 228, 242, 1) 20%, rgba(253, 228, 242, 0) 100%);
    background: linear-gradient(180deg,  rgba(253, 228, 242, 0) 0%,  rgba(253, 228, 242, 1) 20%, rgba(253, 228, 242, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#FDE4F2", 
    endColorstr="#FDE4F2", 
    GradientType=1
    );
    position: relative;
    z-index: 3;
}

#hr-vert::before {
    content: "";
    position: absolute;
    z-index: 2; 
    background: #fde4f2BF;
    background: -webkit-linear-gradient(180deg,  rgba(253, 228, 242, 0) 0%, rgba(253, 228, 242, 0.75) 20%, rgba(253, 228, 242, 0) 100%);
    background: -moz-linear-gradient(180deg, rgba(253, 228, 242, 0) 0%,  rgba(253, 228, 242, 0.75) 20%, rgba(253, 228, 242, 0) 100%);
    background: linear-gradient(180deg,  rgba(253, 228, 242, 0) 0%, rgba(253, 228, 242, 0.75) 20%, rgba(253, 228, 242, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FDE4F2", endColorstr="#FDE4F2", GradientType=1);
    filter: blur(4px);
    width: 100%;
    height: 100%;
}

li {
    color: #f0f0f0;
    text-shadow: 0 0 2px #f0f0f0;
    margin-left: 20px;
}

.info-2 form {
    margin-top: 20px;
    width: 100%;
}

.info-2 button {
    border: 1px solid #f0f0f0;
    box-shadow: 0 0 3px #f0f0f0;
    background: #1818182a;
    color: #f0f0f0;
    border-radius: 5px;
    font-family: "UM Typewriter";
    height: 40px;
    font-size: 20px;
    float: right;
    width: 50%;
    transition: transform, 0.3s;
}

.info-2 button:hover {
    cursor: pointer !important;
    transform: scale(110%);
}

.active#cover {
    display: flex;
}