* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('./images/bg6.png');
  background-size: cover;
}

#player {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  background: rgb(0 0 0 / 79%);
  height: 500px;
  color: #fff;
  margin: 0 auto;
  padding: 10px 15px;
}

h2 {
  margin: 10px 0 5px 0;
}

button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: none;
  border-radius: 25px;
  border: 2px solid #fff;
  color: #fff;
}
