@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@481;576&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@481;576&display=swap');

@font-face {
    font-family: "Variicon";
    src: url(/font/VariiconGX_1.1.4.ttf) format("truetype");
    font-weight: 1 100;
    font-stretch: 1 100; }

*{
    margin:0;
    padding:0;
}

body{
    background:#000;
}

#nav{
    position: fixed;
    z-index:5;
    top:70px;
    right:50px;

    width:min-content;

    color: #fff;
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    text-align: right;
    line-height: 2;
    font-variation-settings: 'wght' 500;
}

a{
    color:#ffffff;
    text-decoration: none;
}

#nav ul{
    list-style-type:none;
}

#nav ul li{
    margin-bottom:10px;
}

#nav span{
    padding:5px 15px 5px 15px;
    border-radius: 50px;
    background:#ff0000;
}

span a:hover{
    color:#ff0000;
}

#nav span:hover {
    color:#ff0000;
    background: #fff;
}

#nav ul ul{
    margin: 10px 0px 10px 0px;
    padding: 0px 10px 0px 0px;
    line-height: 1;
    font-size: 12px;
    border-right: 3px solid #ff0000;
}

#nav ul ul li{
    margin-left: 20px;
}

#hello{
    z-index:2;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

#lines{
    width: 70%;
    padding-top:30px;
    padding-bottom:30px;
    display:flex;
    
    z-index: 60;
    left: 60px;
    top: 70px;
    position:absolute;

    color:#fff;
    font-size: 40px;
    font-family: 'Lora', serif;
    letter-spacing: 2px;
    font-variation-settings: 'wght' 500;

    border-top: 5px solid #fff;
}

#lines h1{
    width: 20%;
    line-height: 0.8;
    font-size: 80px;
    color:#ff0000;
    font-family: 'Roboto Mono', sans-serif;
    margin-top:0;
}

#lines p{
    width:45%;
    margin-top:0;
}

#lines p2{
    width:35%;

    box-sizing:border-box;

    padding-left: 10px;
    padding-top:5px;
    font-size: 18px;
    font-family: 'Roboto Mono', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.8;
    font-variation-settings: 'wght' 400;
    font-style:italic;
    color:#ddd;
}

p2 span{
    text-decoration: underline;
    font-size: 12px;
    font-style:normal;
    font-variation-settings: 'wght' 600;
}

#manifest {
    z-index:1;
    display:flex;
    flex-wrap:wrap;
    left: 60px;
    top: 21vw;
    position:absolute;
    width:70%;
    padding-top: 30px;
    padding-bottom: 150px;
    color: #fff;
    font-size:8vw;
    font-family: 'Roboto Mono', monospace;
    font-variation-settings: 'wght' 200;

}

#manifest .word {
    line-height: 1;
    letter-spacing: -10px;
    margin-right:30px;
    /* border-bottom: 8px solid #fff; */
    animation: breathe 5s infinite;
    animation-delay: calc((var(--index)) * 0.2s);
}

@keyframes breathe {
    50% {
    font-variation-settings: 'wght' 900;
    }
}

#draggable{
    z-index:10;
    position: fixed;
    right:75px;
    bottom: 80px;
    width: 200px;
    height: 290px;

    font-family: 'Roboto Mono', monospace;
    font-variation-settings: 'wght' 400;
}

#button{
    width: 200px;
    height: 30px;
    background:#ff0000;
    padding: 10px;
    font-size: 13px;
    line-height: 1.2;
    border-top-left-radius: 10px;
    color:#fff;
}

#button:hover{
    color:#000;
}

#notes{
    width: 200px;
    height: 250px;
    background:#ff0000;
    padding: 10px;
    border-bottom-right-radius: 10px;
}

#notes a{
    color:#000;
    text-decoration: underline;
}

.burger {
    position:absolute;
    z-index:90;
    top: 15px;
    right: 40px;

    font-family: "Variicon";
    font-size: 70px;
    line-height: 1;
    font-variation-settings: "TIME" 0, "wdth" 70, "wght" 40;
    display: inline-block;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    color:#ff0000;
}

.burger:hover{
    cursor:pointer;
    font-variation-settings: "TIME" 0, "wdth" 70, "wght" 40;
    animation: burgerking 1.5s infinite;
}

@keyframes burgerking {

    50% {
        font-variation-settings: "TIME" 100, "wdth" 70, "wght" 40;
    }
}

@media screen and (max-width: 1280px) {
    #lines h1{font-size: 60px;}
    #lines p{font-size: 30px;padding-right:30px;}
    #lines p2{font-size: 15px;}
    #draggable, #button, #notes{width: 120px;font-size:13px;}
}

@media screen and (max-width: 1050px) {
    #manifest{margin-top:30px;}
    #lines h1{font-size: 60px;}
    #lines p{font-size: 20px; padding-right:30px;}
    #lines p2{font-size: 8px!important;letter-spacing:0px;line-height:1.5;margin-top:-5px;}
    #lines p2{font-size: 15px;}
}

@media screen and (min-width: 900px){
    .burger{display:none;}
}

@media screen and (max-width: 900px) {
    #manifest, #lines{margin:auto;left:30px;width:90%;box-sizing: border-box;margin-top:50px;}
    #lines h1, p{margin-top:0;}
    #manifest{padding-top:80px;}
    #manifest .word {letter-spacing: -5px;}
    #nav{display:none;}
    #notes{display:none;}
    .burger{display:visible;}
}

@media screen and (max-width: 700px) {
    #lines h1{font-size: 40px;}
    #lines p{font-size: 12px; padding-right:15px;line-height: 1.5;}
    #manifest, #lines{margin:auto;left:20px;width:87%;box-sizing: border-box;margin-top:50px;}
    #manifest{padding-top:200px; width:80%;}
    #manifest .word {margin-bottom: 15px;letter-spacing: 0px;}
    #nav{display:none}
}