body {
    background-color: rgb(235, 246, 252);
    margin-top: 5%;
}

h1 {
    color: black;
    margin-top: 15px;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container {
    display: none;
    text-align: center;
    width: 100%;
    height: 100%;
    margin-top:10px;
    margin-bottom: 2%;
    
}
.text {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
    color: white;
}

.container img {
    width: 100%;
    height: 90%;
}

.tvFrame {
    position: relative;
    width: 760px;
    height: 400px;
    border-top: 25px solid #333;;
    border-bottom: 80px solid #333;;
    border-right: 25px solid #333;
    border-left: 25px solid #333;
    border-radius: 20px;
    background: #111;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    margin: auto;
}

.tvScreen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
}


.player-button {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 8px;
    border-radius: 50%;
    margin-top: 3%;
  }
  
  .player-button svg {
    fill: white;
    width: 25px;
    height: 25px;
  }

  .player-button.active {
    background: white; 
  }
  
  .player-button.active svg {
    fill: black; 
  }


  @media (max-width: 768px) {
    .tvFrame {
      width: 95%;
      height: auto;
      border-top: 15px solid #333;
      border-bottom: 50px solid #333;
      border-right: 15px solid #333;
      border-left: 15px solid #333;
    }
  
    .container img {
      height: auto;
      max-height: 300px;
    }
  
    .player-button {
      bottom: 20px;
      left: 20px;
      padding: 6px;
    }
  
    .player-button svg {
      width: 20px;
      height: 20px;
    }
  
    .text {
      font-size: 14px;
    }
  }
  