@font-face {
  font-family: 'Fredoka One'; /* Name you'll use in CSS */
  src: url('font.ttf');
  font-weight: normal;
  font-style: normal;
}
body {
    font-family: 'Fredoka One';
    background-color: #FFAFB0;
    top: 0;
    left: 0;
    margin: 0;
}
.vol {
  display: flex;
  width: 46%;
}
.playerbody {
    color: white;
    background-color: #DD7677;
    border-radius: 15px 15px 15px 15px;
    padding: 15px 15px;
    width: 80%;
    max-width: 632px;
    border: 2px solid #9f595a;
    margin-top: 5px;
    margin-bottom: 5px;
}.controlbody {
    display: flex;
    align-items: center;
    color: white;
    background-color: #EEA0A1;
    border-radius: 15px 15px 15px 15px;
    padding: 5px 5px;
    width: 100%;
    justify-content: flex-start;
}.listener {
    display: flex;
    align-items: center;
    color: white;
    background-color: #ffffff2a;
    border-radius: 15px 15px 15px 15px;
    padding: 5px 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100px;
}.parent {
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.text {
  padding: 5px 0;
}.live-player {
  display: flex;
  align-items: center;
  gap: 10px;
}.playbutton {
    background-color: #00000000;
    padding: 15px 15px;
    border: 0px solid;
    border-radius: 15px;
}.playbutton:hover {
    background-color: rgba(255, 255, 255, 0.20);
}
.header {
    padding: 15px 15px;
    background-color: #FB8696;
    top: 0;
    left: 0;
    display: flex;
    height: 72px;
    align-items: center;
}

.edge-img1 {
  position: absolute;
  transform: translate(-30%, -90%); /* center + pull halfway outside */
}
.edge-img2 {
  position: absolute;
  transform: translate(20%, -95%);

}.streambtn {
    background-color: #00000010;
    padding: 15px 15px;
    border: 0px solid;
    border-radius: 15px;
    margin-left: 10px;
    margin-right: 10px;
    font-family: 'Fredoka One';
    color: white;
    transition-duration: 0.2s;
}.streambtn:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.20);
}