 @font-face {
                font-family: F1;
                font-style: normal;
                src: url('https://damarpilled.neocities.org/fonts/f1body.ttf');
}
            
@font-face {
                font-family: F1;
                font-style: italic;
                src: url('https://damarpilled.neocities.org/fonts/f1italics.ttf');
}
            
@font-face {
                font-family: F1;
                font-weight: 700;
                src: url('https://damarpilled.neocities.org/fonts/f1title.ttf');
}

/* font colors:
    RED: #e10500
    GRAY: #15151e
*/

html {
    background: #15151e;
}

h1 {
    font-family: 'F1', sans-serif;
    margin: 9px;
    color: #ffffff;
    text-align: center;
}

h2, h3, h4 {
    font-family: 'F1', sans-serif;
    margin: 9px;
    color: #FFF;
}

body {
    padding: 5px;
    margin: 0;
    height: 100%;
    background: #15151e;
    font-size: 15px;
    font-family: 'F1', sans-serif;
    color: #FFF;
}

.header {
  background-color: #15151e;
  text-align: center;
  padding: 0;
  margin: auto;
}

.header img {
  border-radius: 25px;
}

.navbar {
  overflow: hidden;
  background-color: #15151e;
  text-align: center;
  padding: 0;
  margin: auto;
}

.navbar ul {
  width: 60%;
  list-style-type: none;
  margin: auto;
  padding: 15px;
}

.navbar li {
  display: inline;
  padding: 8px;
}

.navbar a {
  color: #FFF
}

.navbar a:hover {
  color: #e10500
}

.button {
    display: block;
    line-height: 40px;
    text-align: center;
    margin-bottom: 12px;
    font-size: 17px;
    border-radius: 5px;
    color: #15151e;
    text-decoration: none;
    letter-spacing: 1px;
    border: 3px solid #e10500;
}

.button {
    font-family: 'F1', sans-serif;
                padding: 5px;
                color: #FFF;
}

.button:hover {
    color: #e10500;
    text-decoration: underline;
}

.main {
    display: flex;
    margin: 15px;
}

.content {
    flex-grow: 1;
}

.column {
  float: left;
}

/* Left and right column */
.leftside {
  float: left;
  width: 20%;
  padding: 15px;
}

.rightside {
  float: right;
  width: 20%;
  padding: 15px;
  border-top: 6px solid #e10500;
  margin-right: -200px;
}

/* Middle column */
.center {
  width: 60%;
  padding: 15px;
  border: 6px solid #e10500;
  border-right: solid #15151e;
  border-bottom: solid #15151e;
  border-top-left-radius: 25px;
  margin-bottom: -1500px;
}


  