@font-face {
  font-family: 'Monocraft';
  src: url('monocraft.ttf') format('truetype');
  font-weight: normal; 
  font-style: normal;
}

body {
  background: url("imgs/background.jpg");
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  font-family: 'Monocraft', sans-serif; 
  text-align: center;
  color: #00ccff;
  text-emphasis-color: #000000;
  display: flex;
}

div {
  color: black;
}
  
.content{
  background-color: rgba(121, 145, 148, 0.4);
  width: fit-content;
  padding: 25px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  outline: 1px solid #000000;
}
.textCol{
    color: #000000;
}
img{
  height: 256px;
  width: auto;
  outline: 1px solid #000000;
  border-radius: 10px;
  transition: 0.3s;
}

.container {
  text-align: center;
  align-items: center;
  align-content: center;
  display: flex;
}

.image-container img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  transition: transform 0.2s;
}

.image-container a:hover img {
  transform: scale(1.05);
}

.play-button {
  cursor: pointer;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
  background-color: #2eb3b380;
  border: none;
  border-radius: 5px;
  display: inline-block;
  margin: 10px;
  text-align: center;
  position: fixed;
  bottom: 0px;
  right: 0px; 
}

#toggle-play:checked + .play-button::before {
  content: "Mute";
}
#toggle-play:not(:checked) + .play-button::before {
  content: "Play";
}

#toggle-play:checked + .play-button {
  background-color: #ff0000;
}
