.title {
    text-align: center;
    font-size: 48px;
    margin-top: 100px;
  }

  .player-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .message-container {
    margin-top: 150px;
  }

  .message {
    margin-bottom: 110px;
  }
  
  .chat-container {
    width: 500px;
    margin: 50px auto;
    border: 2px solid #ccc;
    padding: 10px;
  }
  
  .chat-messages {
    height: 350px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    padding: 10px;
  }
  
  .chat-form input[type="text"] {
  width: 430px;
  padding-top: 10px;
  margin-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  }
  
  .chat-form input[type="submit"] {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 50px;
  background-color: #e06666;
  color: white;
  }
  
  .chat-container h2{
      font-size: 25px;
  }
  
  .backhome {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 400px;
    height: 300px;
    z-index: 9999;
  }
      
  .backhome a {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 30px;
    color: green;
  }
  
  .backhome a:hover{
      color: red;
  }