@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;0,800;0,1000;1,700&display=swap');

body {
  font-family: 'Nunito', arial, sans-serif;

  margin: 0;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #53dfe0;
}

#wrapper {
  padding: 50px;
}

#wrapper td:nth-child(10) {
  color: #ed365b;
  font-size: 1.5rem;
  text-align: center;
}

.play-btn {
  display: block;
  padding: 5px 15px;
  background: black;
  color: #f4e00b;
  text-decoration: none;
  border: 3px solid #f23d0a;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: 3px 3px 0 0 black;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 0 0 black;
}

td {
  word-wrap: break-word;
}