body {
    background: linear-gradient(10deg, #000000de, #030303ea, #030303, #030303e5, #000000d3), 
    url(https://i.redd.it/h06kxz4llgq41.gif);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.content {
    margin: 2rem;
    gap: 2rem;
    display: flex;
    justify-content: center;
    align-items: center stretch;
    flex-direction: column;
}

#title-context {
    font-size: clamp(2rem, 3vmin, 3rem);
    font-weight: 300;
    color: rgb(136, 136, 136);
}

.top-box {
    display: flex;
    flex-direction: column;
    justify-content: center;


    height: 70vh;
    font-size: clamp(3rem, 5vmin, 4rem);
    font-weight: 300;
    text-align: center;
}

.buttons {
    margin-top: 4vh;

    display: flex;
    flex-direction: row;

    text-align: center;
    justify-content: center;
    font-size: clamp(0.5rem, 3vmin, 1.8rem);
}

.button1-container {
    width: fit-content;
    display: inline-block;
}


.button1 {
    background: linear-gradient(30deg, #e6e6e6e1,  #b9b9b9e1, #d4d4d4, #c5c5c5e7);
    text-decoration: none;
    color: rgb(29, 29, 29);
    font-weight: 330;
    font-size: clamp(0.5rem, 3vmin, 1.8rem);

    padding: 7px;
    margin: 10px;
    width: clamp(10rem, 30vmin, 20rem);
    display: inline-block;

    transition: all 0.5s;

    border-color: transparent;
    border: solid;
    border-radius: 10px;
}

.button1:hover {
    transform: translateY(-0.5rem);
    filter: invert() contrast(1.5) brightness(0.8);
    border-color: transparent;
}

.signup-button:active {
    transform: scale(0.9);
    filter: invert() contrast(1.5) brightness(0.6);
}

.signup-form {
    transform: translateY(-5vh);
    opacity: 0;
    display: block;
    height: 0rem;
    width: 20vw;
    margin-left: 3rem;
    margin-right: 3rem;

    border-width: 1px !important;
    border: solid;
    border-radius: 10px;
    border-color: rgba(255, 255, 255, 0);


    transition: all 0.5s;
}

.signup-button-container {
    overflow: hidden;
}

.signup-button-container:hover .signup-form, .signup-button-container:hover .signup-description  {
    display: block;
    height: 13vh;
    opacity: 1;
    animation: fall-in 0.5s ease;
    

    transform: translateY(-8px);
    background: linear-gradient(30deg, #13131336,  #0a0a0a, #1313134b, #00000056);
    backdrop-filter: blur(10px);
}

.input-box {

    font-size: clamp(0.5rem, 3vmin, 1.5rem);
    color: white;
    background-color: black;
    border: solid;
    border-color: rgba(255, 255, 255, 0.123);
    border-width: 1px;
    border-radius: 10px;

    padding: 10px;
    margin-top: 1rem;
}

.input-box:active {
    border-color: white;
}

.demo-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;

    margin-bottom: 30vh;
}

.demo-context {
    max-width: 60%;

    text-align: center;
    font-size: clamp(0.5vw, 100rem, 20px);
    font-weight: 300;
}

#demo-window {
    width: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    filter: brightness(0.5);
    transition: all 0.5s ease;
    border-color: white;

    margin-bottom: 2rem;
    overflow: hidden;
}

#demo-page {
    width: 60vw;
    height: 60vh;
}

#demo-window:hover {
    filter: brightness(1);
}

.browser-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    width: fit-content;
    height: 30px;
    gap: 5px;

    margin-left: 10px;
    margin-right: 10px;

    filter: saturate(0);
}

.browser-home-button {
    filter: brightness(100);
}

.browser-hamburger {
    margin-left: auto;
}

.browser-button {
    display: flexbox;
    margin-left: 2px;
}

.browser-dir-buttons {
    scale: 1.3;
}

.browser-refresh-button {
    scale: 1.1;
}



.task-button {
    text-align: center;
    justify-content: center;
    display: inline-block;
    width: 15px;
    height: 15px;

    padding: 2px;

    border-radius: 3px;
    overflow: hidden;
}

.task-button:hover {
    background-color: rgb(53, 53, 53);
}

.window-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    width: fit-content;
    height: 30px;
    gap: 0.2vw;
}

.x-close-button:hover {
    background: rgb(182, 16, 16);
}

.browser-button:hover {
    filter: brightness(0.5);
}

#browser-bar {
    display: flex;
    flex-direction: row;
    text-align: left;
    align-self: left;

    max-height: 4vh;

    width: 100%;

    background-color: rgb(22, 22, 22);
}

#url-bar {
    display: flexbox;
    width: 100%;
    max-height: 2rem;
    overflow: hidden;

    border-radius: 10px;
    padding: 3px;
    padding-left: 3px;

    filter: saturate(0);
    color: rgb(170, 170, 170);
    background-color: rgb(0, 0, 0);
}

.url-bar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    width: clamp(35vw, 10rem, 50vw);
    min-height: 100%;
    gap: 0.2vw;

    height: 30px;
    min-width: fit-content;
    max-height: fit-content;
}



.contact-button-container {
    display: flex;
    flex-direction: row;
    gap: 20px;

    margin-top: 30px;
}



.contact-button {
    width: fit-content;
    align-items: center;
    
    transition: all 0.5s ease;
}

.contact-button:hover {
    scale: 1.2;

    .xmr-context {
        opacity: 1;
        width: fit-content;
    }
}

.contact-button img {
    width: clamp(30px, 40vh, 3.5vh);
}

.xmr-context {
    position: fixed;
    width: 0px;

    text-decoration: none;
    color: white;
    text-align: center;

    overflow: hidden;

    opacity: 0;

    transition: all 0.5s ease;
}





@media (max-aspect-ratio: 3/4) {

    #demo-window {
        filter: brightness(1);
    }

    #browser-bar {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 10px;

        height: fit-content;
        max-height: fit-content !important;
    }

    .url-bar-container {
        min-height: 10rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .browser-bar-item {
        gap: 10px;

        height: 10rem;
        font-size: 23px;
        margin-right: 7px;
        margin-left: 3px;
        padding: 1px;
    }

    #url-bar {
        display: flex;
        align-items: center;
        justify-content: center;

        min-height: 50%;

        font-size: 23px;
    }

    .url-lock {
        display: none;
    }

    .url-https {
        display: none;
    }

    .url-url {
        text-align: center;
        width: fit-content;
    }

    .browser-button {
        display: flexbox;
        margin-left: 2px;
    }

    .browser-dir-buttons {
        scale: 1.3;
    }

    .browser-refresh-button {
        scale: 1.1;
    }

    .top-box {
        font-size: clamp(3rem, 5vmin, 5vh);
    }

    .demo-context {
        min-width: 100rem;
        max-width: 100%;

        margin-bottom: 3rem;

        font-size: clamp(0.8vw, 5vw, 30px);
    }

    .demo-container {
        overflow: hidden;
    }
    .window-controls {
        display: none;
    }

    .browser-bar {
        display: block;
    }

    .posts-container {
        display: none;
    }

    .browser-dir-buttons {
        display: none !important;
    }
}