@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 200 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(font/Inconsolata-VariableFont_wdth,wght.ttf);
}

body {
    background-color: black;
    background-image: linear-gradient(130deg, #000100, #001100);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto;
    background-attachment: fixed;
    color: #00ff01;
    font-family: "Inconsolata", monospace;
    width: 100%;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: url('cursor_default.svg'), crosshair;
}

h1 {
    text-align: center;
}

header {
    width: 100%;
}

.header-marquee {
    color: black;
    background-color: #ff00ff;
}



.main-wrapper {
    display: flex;
    flex-direction: column;
    max-width: calc(800px - 2rem);
    width: calc(100% - 2rem);
    padding: 1rem;
    flex-shrink: 0;
    min-height: calc(100vh - 16rem);
    z-index: 5;
}



.box {
    margin: .5rem 0;
    padding: .5rem 1rem;
    border-radius: .25rem;
    border: solid 1px #00ff01;
    box-shadow: #00ff0111 0px 0px 2rem;
    display: flex;
    flex-direction: column;
}
.box-invert {
    margin: .5rem 0;
    padding: .5rem 1rem;
    border-radius: .25rem;
    border: solid 1px #00ff01;
    color: black;
    background-color: #00ff01;
    box-shadow: #00ff0155 0px 0px 2rem;
}
.box-blur {
    backdrop-filter: blur(10px);
}

.button {
    text-decoration: underline;
    transition: all .25s;
}
.button:hover {
    cursor: url('cursor_pointer.svg'), pointer;
    border: solid 1px white;
}

.section-title {
    font-weight: 900;
    color: white;
}

.top-wrapper {
    min-height: 2rem;
    margin: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 2rem;
}

.navbar-wrapper {
    display: flex;
    flex-direction: row;
    margin: 0px;
    padding: .5rem;
    flex-wrap: wrap;
    margin-left: 1rem;
}
.navbar-link {
    margin: 0 .5rem;
    color: black;
}
.navbar-link:hover {
    cursor: url('cursor_pointer.svg'), pointer;
}


.main-flexbox {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(66% - .5rem);
}
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    width: 33%;
}

.link {
    color: #00ff01;
}
.link:hover {
    cursor: url('cursor_pointer.svg'), pointer;
}

.top-text {
    margin: .5rem 0;
}

.contact-title {
    color: white;
}

.listenbrainz-song-outer {
    display: flex;
    flex-direction: row;
}
#listenbrainz-coverart {
    width: 4rem;
    height: 4rem;
    border-radius: .5rem;
    margin: .5rem 1rem .5rem 0;
    object-fit: cover;
    object-position: center center;
}
#listenbrainz-title {
    color: white;
}

.about-outer {
    display: flex;
    flex-direction: row;
    margin: 1rem;
}
.about-img {
    height: 8rem;
}
.about-inner {
    display: flex;
    flex-direction: column;
    padding: .5rem;
    color: white;
}

.socials-outer {
    display: flex;
    flex-direction: row;
    margin-top: .5rem;
}
.socials-inner {
    display: flex;
    flex-direction: column;
}
.socials-inner .link {
    color: white;
}
.socials-img {
    height: 2rem;
    margin: .5rem 1rem .5rem 0;
}

.badges-wrapper {
    background-color: #cccecc;
    border-radius: .25rem;
    margin: .5rem 0;

    display: flex;
    justify-content: center;
}
.badges-outer {
    display: grid;
    grid-template-columns: repeat(auto-fit, calc(88px + 1rem));
    justify-content: start;
    width: max-content;
    max-width: 100%;
}
.badges-outer:hover {
    cursor: none;
}
.badges-inner {
    margin: .25rem .5rem;
    padding: 0;
    border: none;
}
.badges-inner:hover {
    cursor: none;
}
.badges-img {
    width: 88px;
    height: 31px;
    transition: all .5s;
}
.badges-img:hover {
    transform: scale(1.5);
}

.radio-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 1rem 0;
}
.radio {
    border: none;
}


.friends-img {
    border-radius: 100%;
    width: 16px;
}

.endorsements-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.endorsements-iframe-wrapper {
    margin: .5rem;
    max-width: calc(100% - 1rem);
    overflow-x: scroll;
}
.endorsements-img-wrapper {
    margin: .5rem;
    width: calc(100% - 1rem);
}
.endorsements-img {
    width: 100%;
}

.control-iframe {
    width: 100%;
    height: 24rem;
    margin: .5rem 0;
}




#livereaction-wrapper {
    display: none;
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 30;
}
#livereaction-frame {
    position: relative;
    z-index: 35;
}
#livereaction-vid {
    left: 5px;
    top: 57px;
    position: absolute;
    width: 334px;
    height: 192px;
    object-fit: fill;
    z-index: 30;
}


footer {
    width: 100%;
}

.footer-quote {
    display: block;
    width: calc(100% - 32px);
    text-align: center;
    color: white;
    text-align: center;
    margin: 0 16px 16px 16px;
    overflow-wrap: break-word;
}

.pride-flag {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.pride-flag div {
    height: .5rem;
    width: 100%;
}
.pride-flag-red {
    background-color: #e31a0e;
    box-shadow: #e31a0e55 0px 0px 2rem;
}
.pride-flag-orange {
    background-color: #f28a10;
}
.pride-flag-yellow {
    background-color: #f0e61f;
}
.pride-flag-green {
    background-color: #79b925;
}
.pride-flag-blue {
    background-color: #2857a6;
}
.pride-flag-purple {
    background-color: #6d1e81;
    box-shadow: #6d1e8155 0px 0px 2rem;
}

.copyright {
    color: #ffffff44;
    text-decoration: none;
    z-index: 5;
}
.copyright_div {
    display: flex;
    justify-content: center;
    margin: 16px;
}




@media only screen and (max-width: 600px) {

    .main-flexbox {
        flex-direction: column;
    }
    .content-wrapper {
        width: 100%;
    }
    .sidebar-wrapper {
        width: 100%;
    }

}

@media only screen and (max-width: 700px) {

    .radio-wrapper-outer {
        width: calc(400px * 0.75);
        height: calc(192px * 0.75);
        overflow: hidden;
        flex: 0 0 auto;
        z-index: 5;
        position: relative;
    }
    .radio-wrapper-inner {
        transform: scale(0.75);
        transform-origin: top left;
    }
    .radio {
        width: 400px;
        height: 192px;
        border: none;
    }

}