@font-face {
    font-family: 'perfectfutures';
    src: url('assets/perfectfutures.ttf');
}

@font-face {
    font-family: 'creepymelter';
    src: url('assets/creepymelter.otf');
}

html {
    cursor: url(assets/cursor.cur), default;

    background-color: black;
    background-image: url(images/backgroundimagefinal.png);
    /*image-rendering: pixelated;*/
    image-rendering: auto;
    
    
    background-position: top center;
    background-repeat: repeat;
    background-size: 250px 250px;

    height: auto;
    /*width: auto;*/
    margin: 0;

    scrollbar-width: thin;
    scrollbar-color: darkred black;
}

body {
    color: white;
    margin: 0;

    font-family: creepymelter;
    line-height: 0;
}

a {
    cursor: url(assets/cursorhover.cur), pointer;
}

#header {
    width: 75%;
    height: 125px;
    margin: 20px auto auto auto;

    background: linear-gradient(90deg,rgba(44, 155, 42, 1) 0%, rgba(77, 122, 47, 1) 25%, rgba(39, 64, 117, 1) 50%, rgba(98, 46, 133, 1) 75%, rgba(151, 59, 212, 1) 100%);
}

.headerimage {
    height: 125px;
    width: 60%;
    padding-left: 15%;
}


#navbar {
    width: 60%;
    height: auto;
    margin: 20px auto auto auto;

    padding-bottom: 10px;

    overflow: hidden;
    background: #dd99dd;
}

#navbar ul {
    list-style-type: none;
}

#navbar li {
    float: left;
    padding-left: 10%;
}

#navbar li a {
    display: inline-block;
    color: white;
    text-align: center;
    text-decoration: none;

    width: 50px;
}

#navbar li a:hover {
    background-color: greenyellow;
}

#container {
    width: 75%;
    height: 750px;
    margin: 20px auto auto auto;
    border-style: solid;
    border-color: darkred;
}

#main {
    width: 79%;
    height: 100%;
    float: left;

    background: blue;
/*    border-style: solid;
    border-width: auto;
    border-color: darkred;*/
}

#links {
    width: 19%;
    height: 100%;
    float: right;

    background: green;
/*    border-style: solid;
    border-width: auto;
    border-color: darkred;*/
}

#buttons {
    width: 60%;
    height: auto;
    margin: 20px auto auto auto;
    padding-top: 10px;
    padding-bottom: 10px;

    text-align: center;

    background: black;
    border-style: solid;
    border-color: darkred;
}

#buttons img {
    width: 88px;
    height: 31px;

    margin-bottom: 5px;
    margin-right: 2.5px;
    margin-left: 2.5px;
}

#footer {
    width: 40%;
    height: auto;
    margin: 20px auto auto auto;
    overflow: hidden;

    text-align: center;
    letter-spacing: 1px;
    line-height: 2px;
    font-family: courier;

    background: #56677e;
    border-style: solid;
    border-bottom-style: none;
    border-color: darkred;
}

a:link {
    color: rgb(186, 255, 25);
}
a:hover {
    color: rgb(78, 255, 137);
}
a:visited {
    color: deepskyblue;
}