@font-face {
    font-family: MyFont;
    src: url('1997.ttf');
}

body {
    background-color: #000000;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #ffffff;
}

h1 {
    text-align: center;
    color: #00ff88;
    font-family: MyFont, monospace;
}

h2 {
    color: #50f0a0;
    font-family: MyFont, monospace;
}

a {
  outline-color: transparent;
  font-family: MyFont, monospace;
}

a:link {
  color: #50f0a0;
}

a:visited {
  color: pink;
}

a:hover {
  color: blue;
}

a:active {
    color: yellow;
}

h3 {
    color: #f53bdc;
    font-family: MyFont, monospace;
}

h4 {
    color: #50f0a0;
    font-family: MyFont, monospace;
}

.section {
    background-color: #280b63;
    border-radius: 10px;
    padding: 15px;
    width: 600px
}

.box {
    border-style: solid;
    border-color: white;
    border-width: 2pt;
    padding: 10pt;
    background-color: #000000;
    width: 500px;
    border-radius: 10px;
}

.navigation {
    position: absolute;
    left: 0;
    width: 150px;
}

.banner {
    position: absolute;
    right: 0;
    width: 150px;
}

.content {
    margin: 0 150px 0 150px;
}

footer {
    text-align: center;
    border-top: 2pt solid #ffffff;
    padding: 5pt;
}

.flex-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-basis: 200px;
    padding: 5px;
    border-radius: 10px;
}

.flex-item1 {
    background-color: #280b63;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
}
