h1 {
    font-family: 'Tangerine', serif; 
    font-size:   72px;
    color:       red;
    text-align: center;
    text-shadow: 4px 4px 4px #aaa;
    position: absolute;
    z-index: -1;
  }

body {
    background-color: rgb(0, 0, 0);
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: center;
    color: rgb(255, 255, 255);
    font-size: 22px;
  }

.navbar {
    overflow: visible;
    background-color: #333;
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: rgb(174, 148, 148);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(0, 0, 0);
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: rgb(220, 84, 84);
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  a:link {
    color: green;
    background-color: transparent;
    text-decoration: none;
  }
  a:visited {
    color: pink;
    background-color: transparent;
    text-decoration: none;
  }
  a:hover {
    color: rgb(174, 133, 133);
    background-color: transparent;
    text-decoration: underline;
  }
  a:active {
    color: yellow;
    background-color: transparent;
    text-decoration: underline;
  }

  * {
    box-sizing: border-box;
  }
  
  .column {
    float: left;
    width: 33.33%;
    padding: 5px;
  }
  
  /* Clearfix (clear floats) */
  .row::after {
    content: "";
    clear: both;
    display: table;
  }

.fixed {
    width: 50%;
    bottom: 10px;
  } 

  .container {
    display: flex;
    align-items: flex-start;
    color: burlywood;
    font-size: medium;
}

.header h1 {
  position: relative;
  z-index: 1;
}
