
:root {
    --main-color: #333333;
    --bg: #010103;
    --border: .1rem solid rgba(255,255,255, .3); 
}

@font-face {
    font-family: 'Liberation';
    src: url('../fonts/LiberationSans-Regular.ttf') format('truetype');
}

*{
    font-family: 'Liberation';
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    transition: .2s linear
}

html{
    font: size 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

body{
    background: var(--bg);
}

.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center; /*space-between;*/
    padding: 1.5rem 10%;
    border-bottom: var(--border);
    position: fixed;
    top:0; left:0; right: 0;
    z-index:1000;
}


.header .navbar a{
    margin: 1.0rem;
    font-size: 1em;
    color: #fff
}

.header .navbar a:hover{
    color:var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}

.header .navbar a.button {
    border-radius: 4px;
    border: none;
    padding: 2px 10px;
    background-color: #fff;
    color: #010103;
}

.header .navbar a.button:hover {
    border-radius: 4px;
    border: none;
    padding: 2px 10px;
    background-color:var(--main-color);
    color: #fff;
}

.home{
    min-height: 100vh;
    display: flex;
    /*align-items: center;*/
    background: url('../images/hero.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: center; 
}


.home .content {
    margin: 11.0rem;
    position: center;
    justify-content: center;
}

.home .content h3{
    font-size: 3rem;
    justify-content: center;
    text-align: center;
    color: #fff
}

.heading{
    text-align: center;
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
    font-size: 3rem;
}


.about .content{
    min-height: 50vh;
    display: flex;
    background: var(--bg);
    justify-content: center;
}

.about .content p{
    font-size: 1rem;
    color: #fff;
    justify-content: center;

}

.downloads .content{
    min-height: 50vh;
    /*display: flex;*/
    text-align: center;
    background: var(--bg);
    justify-content: center;
}

.downloads .content p{
    font-size: 1rem;
    color: #fff;
    justify-content: center;

}

.releasenotes .content{
    min-height: 50vh;
    /*display: flex;*/
    text-align: center;
    background: var(--bg);
    justify-content: center;
}

.releasenotes .content p{
    font-size: 1rem;
    color: #fff;
    justify-content: center;

}


.servers .content{
    min-height: 50vh;
    /*display: flex;*/
    text-align: center;
    background: var(--bg);
    justify-content: center;
}

.servers .content p{
    font-size: 1rem;
    color: #fff;
    justify-content: center;

}

