body {
  background-color: white;
  font-family: Verdana;
}
@font-face {
  font-family: Silkscreen;
  src: url(https://sadgrl.online/fonts/slkscr.woff);
}

:root {
  --header-bg: #eb1dcf;
  --nav-bg: #102a7f;
  --one: #fb7f7f;
  --two: #fabdd8;
  --three: #95bfdb;
  --four: #006699;
  --bg-image: url("https://i.imgur.com/6zKBNM5.gif");
  --nav-text: #ffd505;
  --pixel-font: "Silkscreen";
  --dark-text: #693b3d;
  --header-bg-img: url("https://i.imgur.com/0EpbQVr.png");
}

body,
html {
  padding: 0;
  margin: 0;
  color: white;
  font-size: 9px;
  font-family: sans-serif;
  background-image: var(--bg-image);
}
body a {
  color: var(--dark-text);
  font-weight: bold;
}
.header {
  width: 100%;
  background-color: var(--header-bg);
  background-image: var(--header-bg-img);
  height: 100px;
  content: "";
}
.navbar {
  background-color: var(--nav-bg);
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  height: 20px;
}
.navbar ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 10px;
  border-right: 1px dotted white;
  display: inline-block;
  padding-right: 20px;
  margin-top: 3px;
}

.navbar ul li {
  display: inline-block;
  padding-right: 30px;
  padding-top: 2px;
  margin-top: none;
}
.navbar ul li a {
  color: #ffd505;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--pixel-font);
}
.flex {
  display: flex;
  width:100%;
  overflow:hidden;
}
.col {
  width: 200px;
  height: 600px;
  text-align: justify;
}
.one {
  background-color: var(--one);
}
.two {
  background-color: var(--two);
  width: 225px;
  color: var(--dark-text);
}
.three {
  background-color: var(--three);
  width: 225px;
  color: var(--dark-text);
}
.four {
  background-color: var(--four);
}
.padding {
  padding: 10px;
}
.info {
  margin-top: 3px;
  margin-left: 300px;
  font-family: var(--pixel-font);
}
.subheading {
  font-family: var(--pixel-font);
  font-weight: bold;
  font-size: 14px;
}
hr {
  border-top: 1.5px dotted white;
  border-bottom: 1.5px dotted var(--dark-text);
}
.footer {
  color: var(--dark-text);
  margin-left: 200px;
  margin-top: 20px;
}

@media only screen and (max-width: 600px) {
  .flex {
    flex-wrap:wrap;
  }
  .col {
    width:100%;
    height:auto;
  }
  .navbar {
    height:auto;
  }
}





Resources