body {
  background-color: #002147;
  color: #99a6b5;
  font-family: "Courier New";
}

#wholething {
  height: 800px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
  a{
    text-decoration: none;
    color: #99a6b5;
  }
  a:visited{
    text-decoration: none;
    color: #99a6b5;
  }
  
  #block{
    width: 82%;
    margin: auto;
    align-content: center;
    background-color: #001124;
    border: outset 5px #000307;
  }

#header{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #001124;
  color: #e6e9ed;
  padding: 0 20px;
  height: 40px;
}
    #button{
      position: absolute;
      left: 2px;  
      background: none;
      border: none;
      color: #e6e9ed;
      font-size: 16px;
      cursor: pointer;
    }
      #button img{
        width: 10%;
        height: auto;
        display: block;
      }
    #headwords{
      font-size: 2rem;
      text-align: center;
      width: 100%;
      pointer-events: none;
      user-select: none; 
      margin: auto;
    }


#contents{
  display: flex;
  overflow: auto;
}
  #leftcolumn{
    width: 20%;
    background-color: #001124;
  }
    #leftcolumn h1{
      margin: 5px;
    }
    .song{
      display: flex;
      background-color: #00142b;
      margin: 6px;
      border: 1px #000307 inset;
    }
    .song img{
      width: 20%;
      padding: 3px;
      object-fit: contain;
    }
    .songwords{
      align-content: flex-end;
    }
    .song h1{
      font-size: 16px;
      margin: 1px;
    }
    .song p{
      color: #ccd3da;
      font-size: 10px;
      margin: 1px;
    }
  #writing{
    width: 80%;
    background-color: #001124;
    padding: 10px;
  }
    iframe{
      width: 100%;
      height: 78%;
    }
  #musicplayer{
    background-color: #00142b;
    height: 20%;
    width: 100%;
    bottom: 0;
    margin: 0;
    padding: 0;
    border: 1px #000307 inset;
  }
    #topstuff{
      display: flex;
      height: 50%;
    }
      #dancyriv{
        object-fit: contain;
        height: 100%;
      }
      #playerstuff{
        align-items: flex-end;
        height: 100%;
        text-align: center;
      }
      #topstuff h1{
        margin: 2px;
        font-size: 30px;
      }
      #topstuff p{
        margin: 2px;
        font-size: 15px;
      }
    #bottomstuff{
      height: 50%;
      display: flex;
      justify-content: space-evenly;
      align-content: center;
    }
      #bottomstuff img{
        width: auto;
        border: 1px #000307 inset;
      }

  
  
  
  
  
  
  
  
  
  
