* {
    margin: 0;
    padding: 0;
  }

  #body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1581360742512-021d5b2157d8?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=579&q=80');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
  }
  
  #title-container {

    text-align: center;
    background: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    height: 100px;
  }
  
  #title {
    width: 100vw;
    border-radius: 20px;
    padding: 20px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.6);
  }

  #source {
    border: 1px solid black;
    color: black;
    background-color: white;
    border-radius: 5px;
    padding: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: .2s ease-in-out all;
    cursor: pointer;
  }

  #source a {
    color: black;
    background-color: white; 
    transition: .2s ease-in-out all;
    cursor: pointer;
  }

  #source:hover {
    border: 1px solid white;
    color: white;
    background: black;
  }

  #source:hover a {
    color: white;
    background: black;
  }

  #season-span {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
  }

  #season {
    text-align: center;
  }
  
  #container {
    background: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
  }
  
  canvas {
    margin-top: 20px;
    border-radius: 20px;
    display: block;
    height: 80vh;
    width: 90vw;
    max-width: 700px;
    max-height: 600px;
    padding: 5px;
    background: rgba(255,255,255,0.8);
  }
  