* {
    margin: 0;
    padding: 0;
  }

  #body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: url('http://wallpapercave.com/wp/wp1846949.jpg');
    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);
  }

  #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 {
    border-radius: 20px;
    display: flex;
    height: 90vh;
    width: 90vw;
    max-width: 700px;
    max-height: 500px;
    padding: 5px;
    background: rgba(255,255,255,.8);
  }
  