:root
{
    --threedy-red: #FF5027;
    --threedy-green: #00FFAC;
    --threedy-blue: #5075F9;
    --threedy-dark-blue: #091227;
}

html, body
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    
}

body {
    font-family: "Montserrat", sans-serif;
    background-image: url("../img/threedy-form.svg");
    background-color: var(--threedy-dark-blue);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 70%;
    background-attachment: fixed;
}

@media (orientation: landscape) {
    body {
        background-size: auto 70%;
    }
}

@media (orientation: portrait) {
    body {
        background-size: 70% auto;
    }
}

a,
a:active,
a:visited
{
    color: white;
    text-decoration: none;
}

a:hover
{
    color: var(--threedy-green);
}

h2
{
    color: white;
    font-weight: 300;
    font-size: 28px;
    color: var(--threedy-green);
}

h2:before
{
    content: '\25b6\fe0e';
    margin: 0 10px 0 0;
}

h3
{
    color: white;
    font-weight: 300;
    font-size: 22px;
}

ul {
    list-style: none;
    padding: 0px;
}

ul li 
{
    color: white;
    margin: 8px;
    font-weight: 200;
}

ul li:before
{
    content: '\25b6\fe0e';
    margin: 0 20px 0 30px;
}

.i3dh-key-value
{
    display: flex;
    color: white;
    margin: 16px 0;
}

.i3dh-key
{
    font-weight: 500;
    width: 100px;
}


.i3dh-value
{
    font-weight: 300;
}

.i3dh-main
{
    width: 100%;
    height: calc(100% - 128px);
    padding: 32px;
    display: block;
    position: relative;
}

.i3dh-footer
{
    width: 100%;
    bottom: 0px;
    display: block;
    z-index: 2;
    height: auto;
    position: fixed;
    color: var(--threedy-green);
}

.i3dh-paragraph
{
    display: block;
    margin-inline: 20px;
}

.i3dh-copyright
{
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

.i3dh-head
{
    width: 100%;
    height: 180px;
    background-image: url("../img/instant3Dhub-logo.svg");
    background-repeat: no-repeat;
    background-size: 450px auto;
}

pre::-webkit-scrollbar
{
    height: 3.5px;
}

pre::-webkit-scrollbar-track
{
    background-color: rgba(0, 0, 0, 0.3);
}

pre::-webkit-scrollbar-thumb
{
    background-color: rgb(95, 95, 95);
    border-radius: 10px;
}

::-webkit-scrollbar
{
    width: 5px;
    height: 8px;
}

::-webkit-scrollbar-track
{
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb
{
    background-color: var(--threedy-green);
    border-radius: 10px;
}

@media only screen and (max-width: 600px) {
    body {
        background-position: right center;
    }

    .i3dh-head {
        background-size: 80% auto;
    }

    .i3dh-key-value {
        display: block;
    }

    h2 {
        font-size: larger;
    }

    .i3dh-main {
        height: auto;
        padding: 20px 20px 10px 20px;
    }

    .i3dh-footer {
        font-size: small;
        width: 100%;
        bottom: unset;
        display: block;
        z-index: unset;
        height: auto;
        position: relative;
        color: var(--threedy-green);
    }
}