* {
    overflow: hidden;
    color: white;
    font-family: "Rubik", sans-serif;
    font-style: normal;
}

body {
    position: fixed;
    background: url(../img/bg.gif);
    background-color: black;
    margin: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-attachment: scroll;
    width: 100%;
    height: 100vh;
    background-size: auto;
}

.flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

#blinds {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(36px);
  transition: backdrop-filter 0.7s ease-in-out;
}

#blinds .flexbox {
  filter: blur(0px);
  transition: filter 0.5s ease-in-out;
}

#blinds .flexbox * {
    font-family: "Bitcount Grid Double", system-ui;
    font-optical-sizing: auto;
    font-weight: 250;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "CRSV" 0.5,
        "ELSH" 0,
        "ELXP" 0;

    padding: 0;
    margin: 0;
    border: 0;
}

#av {
  position: absolute;
  border-radius: 40%;
  width: 384px;
}

.basediv {
    padding: 0;
    margin: 0;
    border: 0;
    display: flex;
    flex-direction: row-reverse;
}

#baserects div {
    padding: 0;
    margin: 0;
    border: 0;
    display: block;
}

#fadeline {
    background: linear-gradient(174deg, transparent, purple, purple, purple, purple, purple, purple, purple, transparent, transparent, transparent);
}

@keyframes gradientAnimation {
    0% {
        background-position: 100% 0;
    }
    50% {
        background-position: 0 100%;
    }
    100% {
        background-position: 100% 0;
    }
}

.nick {
    background: -webkit-linear-gradient(45deg, #D4A5D9, #9B76B4, #5C3D5C);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 6s ease infinite;
}

#reps {
    background: -webkit-linear-gradient(45deg, white, yellow, white, white);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 6s ease infinite;
}

.steamcomment {
    display: flex !important;
    align-items: center;
    justify-content: space-evenly;
    width: 320px;
    height: 90px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 10px;
}

footer {
    position: absolute;
    bottom: 0px;
    left: 20px;
}

.socialbar {
    display: flex !important;
    flex-direction: row-reverse;
    align-items: center;
}

.social img {
    height: 48px;
    width: 48px;
}

.socialbar a {
    background: linear-gradient(140deg, blue, lavender);
    border-radius: 50%;
    height: 48px;
    width: 48px;
    margin-right: 10px;
    margin-left: 10px;
}

#waveform {
    width: 360px;
    height: 40px;
    position: relative;
    top: -40px;
}

#music {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    position: absolute;
}