/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
body {
  background-image: url('back.png'); /* or .png, .gif */
  background-size: cover;       /* Makes it fill the whole screen */
  background-repeat: no-repeat; /* Prevents tiling */
  background-position: center;  /* Centers it */
}
<!DOCTYPE html>
<html>
<head>
  <title>My Horrid Site</title>
  <style>
    body {
      background-image: url('back.png');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }
  </style>
</head>
<body>
  <h1></h1>
</body>
</html>
<head>
  <title></title>
  <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
  <style>
    body {
      margin: 0;
      padding: 0;
      background: url('back.png') no-repeat center center fixed;
      background-size: cover;
      font-family: 'Press Start 2P', monospace;
    }

    .title {
      position: absolute;
      top: 30px;
      left: 50px;
      color: black;
      font-size: 24px;
      margin: 0;
      font-family: 'Press Start 2P', monospace;
    }

    .sources {
      position: absolute;
      top: 120px;
      left: 50px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
    }

    .doc-row {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .doc-container {
      position: relative;
      width: 200px;
      flex-shrink: 0;
    }

    .doc-container img {
      width: 200px;
      height: auto;
      box-shadow: 0 0 20px black;
      transition: transform 0.2s;
    }

    .doc-container img:hover {
      transform: scale(1.05);
    }

    .brian-link {
      position: absolute;
      top: -75px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }

    .brian-link img {
      width: 150px;
      height: auto;
      box-shadow: none;
    }

    .doc-link {
      position: relative;
      z-index: 2;
      display: block;
    }

    .label {
      color: black;
      font-size: 16px;
      max-width: 200px;
      font-family: 'Press Start 2P', monospace;
    }
  </style>
</head>
.linktree {
  position: absolute;
  top: 150px;
  right: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Press Start 2P', monospace;
}

.linktree a {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 8px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s, background-color 0.2s;
}

.linktree a:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .sources, .linktree {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .doc-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .title {
    text-align: center;
    position: static;
    margin-top: 20px;
  }

  .linktree a {
    width: 100% !important;
    max-width: 240px;
  }

  .label {
    text-align: center;
    max-width: 90%;
  }

  body {
    flex-direction: column;
    align-items: center;
  }
}
