@media (min-width: 320px) and (max-width: 1329px) {

    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

    * {
        margin: 0;
        padding:0;
        box-sizing: border-box;
    }

    body {
        height: 100vh;
        width: 100vw;
        overflow: hidden;
        color: #ffffff;
        font-family: "roboto", sans-serif;
        background-image: url(files/bgimg.png);
        background-blend-mode: hue;
        background-size: cover;
        backdrop-filter: blur(25px);
    }

    @keyframes fadeInAnimation {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }    
    
    @keyframes fadeInCont {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 0.75;
        }
    }

    .container {
        padding: 10px;
        height: 90vh;
        margin: 0 auto;
        border-radius: 20px;
        position: relative;
        width: 90vw;
        overflow-y: visible;
        text-overflow: ellipsis;
        overflow-x: hidden;
        animation: fadeInAnimation ease 0.5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .bgfilt {
        background-color: #242424;
        opacity: 75%;
        animation: fadeInCont ease 0.5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .center {
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .container::-webkit-scrollbar {
        height: 90%;
        width: 0.5em;
        border-radius: 2em;
    }
    
    .container::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(1, 1, 1, 1);
        border-radius: 2em;
    }
    
    .container::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid rgb(70, 70, 70);
        border-radius: 2em;
    }

    .center-img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }

    .center-text{
        padding: 10px;
        text-align: center;
    }

    .pfp {
        height: 150px;
        width: 150px;
        border-radius: 70px;
        transition: all 0.33s ease-in-out;
    }

    .pfp:hover{
        border-radius: 55px;
    }

    h1{
        font-size: 72px;
    }

    h2{
        font-size: 48px;
    }

    h3{
        font-size: 36px;
    }

    h4{
        font-size: 24px;
    }

    h5{
        font-size: 16px;
    }

    h6{
        font-size: 12px;
    }

    .h1{
        font-size: 72px;
    }

    .h2{
        font-size: 48px;
    }

    .h3{
        font-size: 36px;
    }

    .h4{
        font-size: 24px;
    }

    .h5{
        font-size: 16px;
    }

    .h6{
        font-size: 12px;
    }

    .nickname {
        font-size: 36px;
    }

    .smooth-button {
        justify-content: center;
        margin: 10px;
        border-radius: 15px;
        height: 5vh;
        width: 275px;
        font-family: "roboto", sans-serif;
        font-size: x-large;
        border: 0px solid;
        transition: all 0.3s ease;
    }
    .steam{
        background-image: linear-gradient(to right, #2544A5, #0C236B);
        color: #ffffff;
    }

    .youtube {
        background-image: linear-gradient(to right, #ff0000, #a60000);
        color: #ffffff;
    }

    .deviantart {
        background-image: linear-gradient(to right, #17ff9a, #00632e);
        color: #000;
    }

    .email{
        background-image: linear-gradient(to right, #4e7aff, #144fff);
        color: #ffffff;
    }

    .discord {
        background-image: linear-gradient(to right, #085eff, #0066ff);
        color: #ffffff;
    }

    button:hover {
        cursor: pointer;
        border-radius: 25px;
    }

    .buttons {
        text-align: center;
    }

    .status {
        font-size: 24px;
    }

    hr {
        height: 5px;
        background-color: #ffffff;
        border-radius: 15px;
        margin: 10px;
    }

    .desktop-only {
        display: block;
    }

    .center-iframe {
        margin: 0 auto;
        display: block;
    }

    .vert-hr{
        margin:  0 auto;
        width: 24em;
        background-color: #ffffff;
        height: 5px;
        border-radius: 5px; 
    }

}

@media (min-width: 1330px){

    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

    * {
        margin: 0;
        padding:0;
        box-sizing: border-box;
    }

    body {
        height: 100vh;
        width: 100vw;
        overflow: hidden;
        color: #ffffff;
        font-family: "roboto", sans-serif;
        background-image: url(files/bgimg.png);
        background-blend-mode: hue;
        background-size: cover;
        backdrop-filter: blur(25px);
    }

    @keyframes fadeInAnimation {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    @keyframes fadeInCont {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 0.75;
        }
    }

    .container {
        padding: 10px;
        height: 90vh;
        margin: 0 auto;
        border-radius: 20px;
        position: relative;
        width: 90vw;
        overflow-y: visible;
        text-overflow: ellipsis;
        overflow-x: hidden;
        animation: fadeInAnimation ease 0.5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
        display: flex;
        flex-direction: row;
    }

    .bgfilt {
        background-color: #242424;
        opacity: 75%;
        animation: fadeInCont ease 0.5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    .center {
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .container::-webkit-scrollbar {
        height: 90%;
        width: 0.5em;
        border-radius: 2em;
    }
    
    .container::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(1, 1, 1, 1);
        border-radius: 2em;
    }
    
    .container::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid rgb(70, 70, 70);
        border-radius: 2em;
    }

    .center-img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }

    .center-text{
        padding: 10px;
        text-align: center;
    }

    .pfp {
        height: 150px;
        width: 150px;
        border-radius: 70px;
        transition: all 0.33s ease-in-out;
    }

    .pfp:hover{
        border-radius: 55px;
    }

    h1{
        font-size: 72px;
    }

    h2{
        font-size: 48px;
    }

    h3{
        font-size: 36px;
    }

    h4{
        font-size: 24px;
    }

    h5{
        font-size: 16px;
    }

    h6{
        font-size: 12px;
    }
    .h1{
        font-size: 72px;
    }

    .h2{
        font-size: 48px;
    }

    .h3{
        font-size: 36px;
    }

    .h4{
        font-size: 24px;
    }

    .h5{
        font-size: 16px;
    }

    .h6{
        font-size: 12px;
    }

    .nickname {
        font-size: 36px;
    }

    .thinner {
        font-weight: 400;
    }

    .smooth-button {
        justify-content: center;
        margin: 10px;
        border-radius: 15px;
        height:2em;
        width: 10em;
        font-family: "roboto", sans-serif;
        font-size: x-large;
        border: 0px solid;
        transition: all 0.3s ease;
    }
    .steam{
        background-image: linear-gradient(to right, #2544A5, #0C236B);
        color: #ffffff;
    }

    .youtube {
        background-image: linear-gradient(to right, #ff0000, #a60000);
        color: #ffffff;
    }

    .deviantart {
        background-image: linear-gradient(to right, #17ff9a, #00632e);
        color: #000;
    }

    .email{
        background-image: linear-gradient(to right, #4e7aff, #144fff);
        color: #ffffff;
    }

    .discord {
        background-image: linear-gradient(to right, #085eff, #0066ff);
        color: #ffffff;
    }

    .github {
        background-image: linear-gradient(to right, #111111, #241f57);
        color: #ffffff;
    }

    button:hover {
        cursor: pointer;
        border-radius: 25px;
    }

    .buttons {
        text-align: center;
    }

    .status {
        font-size: 24px;
    }

    hr {
        height: 5px;
        background-color: #ffffff;
        border-radius: 15px;
        margin: 10px;
    }

    .left-subside {
        width: 30%;
        height: 100%;
    }
    .vert-hr{
        height: 40em;
        background-color: #ffffff;
        width: 5px;
        border-radius: 5px;
        
    }

    .desktop-only {
        width: 70%;
        height: 90%;
        display: flex;
        flex-direction: row;
        text-align: center;
    }

    .pfp-etc {
        height: 90%;
    }

    .v-center {
        margin: 0;
        position:relative;
    }

    .text-areas {
        width: 100%;
    }

    .center-iframe {
        margin: 0 auto;
        display: block;
    }

    .dis-hidden, .em-hidden {
        display: none;
        transition: all 0.2s ease;
    }
}