/* Makes the way the boxes are sized more intuitive */
* {box-sizing:border-box}

/* Insert Sofia Sans Font */
@font-face {
    font-family: 'Sofia Sans';
    src: url('fonts/Sofia_Sans_Condensed/SofiaSansCondensed-VariableFont_wght.ttf') format('truetype');
}


.navbar{
    height: 75px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #2d2d2d;
    overflow: none;

    text-align: center;

    font-size: 350%;
    font-weight: 400;
    font-family:'Sofia Sans', Times New Roman;
}

.pc{
    display: contents;
    }

    .version{
        display: block;
        position: absolute;

        left: 0;
        top: 0;

        text-align: left;

        font-size: 50%;

        color: white;

        padding: 5px;
}


a.blue:link,
a.pink:link,
a.white:link{
    padding: 0.5%;
    cursor: pointer;
    text-decoration: none;
}

a.white:link{color: white;}
a.white:visited{color: white;}
a.white:hover {color:#7ACBF5;}

/* IMPORTANT: ALSO SET IFRAME HEIGHT AND MAIN TOP MARGINGS IN THE PARENT FILES!!! */
/*  Here something to get started with: */
/*
@media (max-width: 700px){
    .main{
        top: 55px;
        height: calc(100% - 55px);
    }
}

@media (max-width: 600px){
    .main{
        top: 40px;
        height: calc(100% - 40px);
    }
}

@media (max-width: 400px){
    .main{
        top: 35px;
        height: calc(100% - 35px);
    }
}
*/


/* .version responsive css */
@media (max-width: 1300px){
    .version{
        font-size: 45%;
    }    
}
@media (max-width: 1200px){
    .version{
        font-size: 40%;
    }    
}
@media (max-width: 1100px){
    .version{
        font-size: 35%;
    }    
}
@media (max-width: 1100px){
    .version{
        font-size: 30%;
    }    
}
@media (max-width: 1000px){
    .version{
        font-size: 25%;
    }    
}
@media (max-width: 900px){
    .version{
        display: none;
    }    
}