/* Example CSS file */ 

body{
    margin: 0 auto;
    background-color: whitesmoke;
    font-family: autopia;
    overflow-x: hidden;
}

#title{
    position: fixed;
    display: block;
    left: 1vw;
    top: 0;
    margin: 0;
    padding: .3vw 1vw;
    border-radius: 25px;
    user-select: none;
    z-index: 8;
    color: rgb(54, 54, 54);
    font-family: cabinet;
    font-size: 2vh;
    text-align: right;
}

#title a{
text-decoration: none;
color: unset;
}

#nav{
    user-select: none;
    position: fixed;
    top: 0;
    background-color: rgb(255, 170, 170);
    font-size: 2vh;
    background-color: whitesmoke;
    border-bottom: 1px solid rgb(255, 170, 170);
    color: rgb(255, 170, 170);
    z-index: 2;
    width: 99vw;
    padding: .3vw 1vw;
    padding-right: 1vw;
    z-index: 7;
    text-align: right;
    overflow: hidden;
}

#shortdesc{
    display: block;
    margin-top: 3vw;
}


#nav a{
    position: relative;
    border-radius: 0;
    margin-top: .5vw;
    transition: .2s;
    padding: .3vw 1vw;
    text-decoration: none;
    color: rgb(54, 54, 54);
}

#nav a:last-of-type{
    margin-right: .5vw;
}


#nav a:hover{
    background-color: rgb(54, 54, 54);
    color: rgb(255, 170, 170);
}

#intr{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255, 170, 170);
    z-index: 1;
    transition: .1s;
    border-bottom: 1px solid rgb(255, 170, 170);
    max-height: 0;
    overflow: hidden;
    width: 100vw;
    z-index: 6;
    padding: 0 1vw 1vw 3vw;
}

#intr p::selection{
    background-color: whitesmoke;
    color: rgb(54, 54, 54);
}

#intr p{
    max-width: 750px;
}

#getIntr{
    cursor: pointer;
    display: inline-block;
    margin: 0;
    transition: .2s;
    z-index: 7;
    user-select: none;
    margin-left: 3vw;
    transform-origin: center;
    font-family: sans-serif;
}

.current{
    background-color: rgb(255, 170, 170);
}


#footer{
    position: relative;
    display: inline-block;
    background-color: rgb(255, 170, 170);
    width: 98vw;
    padding:.5vw 1vw;
    height: auto;
}

#burg{
    display: none;
    cursor: pointer;
}


@media all and (orientation: portrait){ 

    #nav{
        top: 4vh;
        background-color: rgb(255, 170, 170);
        font-size: 2vh;
        border-bottom: none;
        color: rgb(255, 170, 170);
        z-index: 2;
        width: 100vw;
        padding: 0;
        max-height: 0;
        padding-right: 0;
        text-align: center;
        transition: .4s;
        overflow: hidden;
    
    }


#intr{
    display: none;
}

#getIntr{
    display: none;
}

#nav a{
    position: relative;
    border-radius: 0;
    margin-top: .5vw;
    display: block;
    border-bottom: 2px solid white;
    transition: .2s;
    padding: 2vh 1vw;
    text-decoration: none;
    color: rgb(54, 54, 54);
}

#title{
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    margin: 0;
    padding: 1vh 0;
    border-radius: 0;
    user-select: none;
    width: 100vw;
    z-index: 6;
    color: rgb(54, 54, 54);
    border-bottom: 2px solid rgb(255, 170, 170);
    font-family: cabinet;
    background-color: whitesmoke;
    font-size: 2vh;
    text-align: center;
}

#burg{
    display: block;
    position: fixed;
    font-family: cabinet;
    top: 0;
    right: 0;
    padding: 0 5vw;
    font-size: 3.5vh;
    z-index: 7;
    color: rgb(255, 170, 170);
}
    
}