

@keyframes hideShrink {
    0% { transform: scaleX(2) scaleY(2) scaleZ(2);}
    100% { transform: scaleX(1) scaleY(1) scaleZ(1);}
}

@-webkit-keyframes hideShrink {
    0% { transform: scaleX(2) scaleY(2) scaleZ(2);}
    100% { transform: scaleX(1) scaleY(1) scaleZ(1);}
}

@keyframes hideLeft {
    0% {translate: -50% 0;}
    100% {translate: -100% 0;}
}

@-webkit-keyframes hideLeft {
    0% {translate: -50% 0;}
    100% {translate: -100% 0;}
}

@keyframes hideRight {
    0% {translate: 50% 0;}
    100% {translate: 100% 0;}
}

@-webkit-keyframes hideRight {
    0% {translate: 50% 0;}
    100% {translate: 100% 0;}
}

@keyframes hideBush {
    0% {translate: -50% 0;}
    100% {translate: -50% 80%;}
}

@-webkit-keyframes hideBush {
    0% {translate: -50% 0;}
    100% {translate: -50% 80%;}
}

html{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

body{
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/static/img/Background.png");
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;

    #campfire_message{
        
        position: absolute;
        top: 50%;
        left: 55%;
        width: 20%;
        max-width: 120px;
        font-family: "Archivo Black", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        color: #fddfb8;
        text-decoration: none;
        font-size: 1.5em;
        transform: rotateX(-12deg) rotateY(-39deg) rotateZ(12deg);
    }

    #campfire_message:visited{
        color: #fddfb8;
    }

    #campfire_message:link{
        color: whitesmoke;
    }

    #campfire{
        position: absolute;
        top: 53%;
        left: 50%;
        translate: -50% -50%;
        filter: blur(1px);
        cursor: pointer;
    }

    @media (max-aspect-ratio: 2.052083333333333) {
        #campfire {
            height: 15%;
        }
      }
      
      @media (min-aspect-ratio: 2.052083333333333) {
        #campfire {
            width: 9%;
        }
      }
      
      @media (aspect-ratio: 2.052083333333333) {
        #campfire {
            width: 9%;
        }
      }

    #not_found{
        text-decoration: none;
        color: whitesmoke;
        font-family: "Archivo Black", sans-serif;
        font-weight: 400;
        font-style: normal;
        position:absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        width: 30%;
        text-align: center;
        padding: 30px;
        background-color: rgba(0,0,0,0.6);
        border-radius: 10px;
    }

    .not_found:visited{
        color: whitesmoke
    }

    .not_found:link{
        color: whitesmoke
    }

    .sign{
        background-image: url("/static/img/Sign.png");
        position:absolute;
        display: flex;
        font-family: "Archivo Black", sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
        color: whitesmoke;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
        -webkit-box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
        -moz-box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
        background-size: cover;
        background-position: center; 
        background-repeat: no-repeat;
        width: 10%;
        aspect-ratio: 3;
        min-width: 150px;
        border-radius: 5px;
        padding: 5px;

        .sign_logo{
            height:45px;     
            display: flex;
            align-self: center;
        }

        p{
            margin: 0;      
            display: flex;
            align-self: center;
            margin-left: 10px;
            margin-right: 10px; 
        }
    }
    
    .sign:visited{
        color: whitesmoke
    }
    
    .sign:link{
        color: whitesmoke
    }

    #thangs{
        transform: rotateX(-21deg) rotateY(39deg) rotateZ(-6deg);
        top: 20%;
        left: 5%;
    }

    #youtube{
        transform: rotateX(-40deg) rotateY(-20deg) rotateZ(0deg);
        top: 10%;
        right: 22%;
        width: 12%;
        min-width: 160px;
    }

    #twitch{
        transform: rotateX(40deg) rotateY(-20deg) rotateZ(0deg);
        top: 10%;
        left: 22%;
        width: 12%;
        min-width: 160px;
    }

    #twitter{
        transform: rotateX(-21deg) rotateY(-39deg) rotateZ(6deg);
        top: 20%;
        right: 5%;
    }

    #discord{
        transform: rotateX(-30deg) rotateY(20deg) rotateZ(0);
        translate: 50% 0;
        top: 17%;
        right: 60%;
    }

    #itch{
        transform: rotateX(30deg) rotateY(20deg) rotateZ(0);
        translate: 50% 0;
        top: 17%;
        right: 40%;
    }

    .shown_left{
        translate: -50% 0;
        transform: scaleX(2) scaleY(2) scaleZ(2);
    }

    .hide_left{
        /* border: black solid 2px; */
        -webkit-animation: hideLeft 1s forwards ease-out, hideShrink 1s forwards ease-out;
        animation: hideLeft 1s forwards ease-out, hideShrink 1s forwards ease-out;
    }

    .hidden_left{
        translate: -100% 0;
        transform: scaleX(1) scaleY(1) scaleZ(1);
    }

    .show_left{
        /* border: black solid 2px; */
        -webkit-animation: hideLeft 1s reverse ease-out, hideShrink 1s reverse ease-out;
        animation: hideLeft 1s reverse ease-out, hideShrink 1s reverse ease-out;
    }

    .shown_right{
        translate: 50% 0;
        transform: scaleX(2) scaleY(2) scaleZ(2);
    }

    .hide_right{
        /* border: black solid 2px; */
        -webkit-animation: hideRight 1s forwards ease-out, hideShrink 1s forwards ease-out;
        animation: hideRight 1s forwards ease-out, hideShrink 1s forwards ease-out;
    }

    .hidden_right{
        translate: 100% 0;
        transform: scaleX(1) scaleY(1) scaleZ(1);
    }

    .show_right{
        /* border: black solid 2px; */
        -webkit-animation: hideRight 1s reverse ease-out, hideShrink 1s reverse ease-out;
        animation: hideRight 1s reverse ease-out, hideShrink 1s reverse ease-out;
    }

    #left_tree{
        height: 70%;
        position: absolute;
        bottom:0;
        left: 0;
    }

    #right_tree{
        height: 70%;
        position: absolute;
        bottom:0;
        right: 0;
    }
    #bush{
        position: absolute;
        bottom:0;
        left: 50%;
        width: 100%;
    }
    
    #bush_text{
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 100%;
        text-decoration: none;
        color: whitesmoke;
        font-family: "Archivo Black", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 32px;
        text-align: center;
        opacity: 0.5;
        padding: 10px;
    }

    .hide_bush{
        animation: hideBush 1s forwards ease-out;
        -webkit-animation: hideBush 1s forwards ease-out;
    }

    .hidden_bush{
        translate: -50% 80%;
    }

    .show_bush{
        animation: hideBush 1s reverse ease-out;
        -webkit-animation: hideBush 1s reverse ease-out;
    }

    .shown_bush{
        translate: -50% 0;
    }

    #beeg_tree{
        position: absolute;
        height: 180%;
        bottom: -13%;
        right: 50%;
        translate: 50% 0;
    }

    #easy_links{
        position: absolute;
        bottom: 50%;
        right: 50%;
        translate: 50% 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .link_sign{
            background-image: url("/static/img/Sign.png");
            display: flex;
            text-align: center;
            justify-content: center;
            font-family: "Archivo Black", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 4rem;
            text-decoration: none;
            color: whitesmoke;
            padding: 20px;
            background-size: cover;
            background-position: center; 
            background-repeat: no-repeat;
            height: 10%;
            margin: 5px;
            box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
            -webkit-box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
            -moz-box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
        }

        .sign_logo{
            height:4rem;     
            display: flex;
            align-self: center;
            text-decoration: none;
            color: whitesmoke;
        }

        p{
            margin: 0;      
            display: flex;
            align-self: center;
            margin-left: 2rem;
            margin-right: 2rem; 
        }

        .project_sign{
            font-family: "Archivo Black", sans-serif;
            background-image: url("/static/img/Sign.png");
            display: flex;
            text-align: center;
            text-decoration: none;
            flex-direction: column;
            background-size: cover;
            background-position: center; 
            background-repeat: no-repeat;
            margin: 5px;padding: 5px;
            color: whitesmoke;
            border-radius: 10px;
            box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
            -webkit-box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
            -moz-box-shadow: 0px -5px 15px 0px rgba(0,0,0,1);
        }
    
        .sign:visited{
            color: whitesmoke
        }
        
        .sign:link{
            color: whitesmoke
        }


        .project_title{
            display: flex;
            align-self: center;
            margin-bottom: 15px;
            font-size: 24px;

        }

        .project_description{
            display: flex;
            align-self: center;
        }

    }
}

.noselect {
    user-drag: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }