@import url("custom.css");

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

html{
  height: 100%;
  width: 100%;
}

body{
  background-color: black;
  height: 100%;
  width: 100%;
}

player-content{
  height: 100%; /* fallback for browsers that don't support dvh */
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background: var(--main-background);
}



