@font-face {
    font-family: gothic;
    src: url('https://confettiguts.gay/fonts/gothic.ttf');
}
@font-face {
    font-family: byte;
    src: url('https://confettiguts.gay/fonts/byte.ttf');
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #ffffff #0e0220;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #0e0220;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
    border: 3px solid #0e0220;
  }
body {
    background: url('bg.png');
	background-size: cover;
	background-position: 0 -4em;
	background-attachment: fixed;
    font-family: byte;
}
a {
    color: white!important;
}
main {
    background: #0E0220;
    width: 41em;
    margin: 3em auto 0.5em auto;
    height: auto;
    border-radius: 1em;
    border: 2px solid white;
    color: white;
    text-align: center;
    padding-bottom: 2em;
}
main h1 {
    font-family: gothic;
    margin: 0.3em auto;
    font-size: 3em;
}
main h1 img {
    image-rendering: pixelated;
    height: 0.7em;
}
#flippedPix {
    transform: scaleX(-1) scaleY(-1);
}
main h2 {
    margin: 1em auto 0.3em 2.6em;
    padding: 0 0.7em 0.15em 0.2em;
    font-family: gothic;
    width: fit-content;
    text-align: left;
    background: rgb(102,12,148);
    background: linear-gradient(72deg, rgba(102,12,148,1) 89%, rgba(255,255,255,0) 95%, rgba(255,255,255,0) 100%);
}
main p {
    margin: 0.1em auto 3em;
    width: 72%;
}
.identityCont {
    width: 32em;
    height: 10em;
    margin: 0.7em auto 0.5em auto;
    text-align: left;
    border: 1px dotted white;
}
.identityCont .icon {
    float: left;
    margin: 0.5em;
    width: 9em;
    height: 9em;
}
.identityCont h1 {
    font-weight: normal;
    margin: 0.2em auto 0 -0.1em;
    font-size: 1.8em;
}
.identityCont p {
    float: right;
    width: 21.5em;
    height: 6.5em;
    margin: 0.5em 0.5em 0.5em 0;
    overflow: auto;
}
#back {
    font-family: gothic;
    font-size: 2em;
    font-weight: bold;
    padding: 0.2em 1em;
    background: #0E0220;
    border-radius: 1em;
    border: 2px solid white;
    display: block;
    margin: 1em auto;
    width: fit-content;
    text-decoration: none!important;
}
@media screen and (max-width: 799px) {
    main {
        width: 95%;
    }
    main h1 {
        font-size: 2.5em;
    }
    main p {
        width: 90%;
    }
    .identityCont {
        width: 85%;
        height: auto;
        text-align: center;
        padding: 0.5em;
    }
    .identityCont .icon, .identityCont p {
        float: none;
        display: block;
        margin: 0.2em auto;
    }
    .identityCont p {
        width: 95%;
    }
}