@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Rubik+Vinyl&display=swap');
body
{
    background-color: #303030;
    margin:0;
	padding:0;
	height:100%;
}
#container
{
    display: flex;
    justify-content: center;
    min-height:100%;
    position:relative;
}
.barbuthigh:not(#titletext,#supportbutton,#footertext)
{
    display: flex;
    justify-content: center;
}
#titlebar
{
    background-color: #242424;
    width: 1200px;
}
#titletext h1
{
    color: wheat;
}
#titletext
{
    font-family: 'Rubik Vinyl', cursive;
    float: left;
    margin-left: 5px;
}
.supportbutton
{
    font-family: 'Lato', sans-serif;
    float: left;
    margin-top: 18px;
    margin-right: 5px;
    margin-left: 610px;
}
.supportbutton a{
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    color: #fff;
}
.supportbutton button{
    font-family: 'Lato', sans-serif;
    background-color: wheat;
    color: black;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: 1s;
}
.supportbutton button:hover{
    font-family: 'Lato', sans-serif;
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
#clearboth
{
    clear: both;
}
#maincontent
{
    font-family: 'Lato', sans-serif;
    width: 800px;
    float: left;
}
p
{
    color: rgb(223, 200, 157);
}
#navigation
{
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
    width: 400px;
    float: left;
    background-color: #242424;
    color: wheat;
}
#navigation a
{
    color: red;
    text-decoration: none;
}
#navigation a:hover{
    color: green;
    text-decoration: underline;
}
#navigation h2
{
    text-align: center;
}
h2
{
    color: wheat;
}
#footer
{
    font-family: 'Lato', sans-serif;
    color: wheat;
    background-color: #242424;
    font-size: large;
    position:absolute;
	width: 1200px;
    height: 35px;
    display: flex;
}
#footer a
{
    font-family: 'Lato', sans-serif;
    color: red;
    text-decoration: none;
}
#footer a:hover
{
    font-family: 'Lato', sans-serif;
    color: green;
    text-decoration: underline;
}
#footertext
{
    margin-top: 5px;
    margin-left: 400px;
}
#clearboth2
{
    clear: both;
}