body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: #333;
    width: 100%;
    height: 100vh;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    background-image: url(bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .copy {
    margin-bottom: 40px;
    color: #fff;
  }

  .container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-items: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    width: 500px;
  }
  #player {
    background-color: blue;
    border: 1px solid black;
    height: 100px;
    width: 90%;
    border-radius: 10px
  }