* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
  position: relative;
  height: 100%;
  width: 100%;
}

body {
    font-family: 'Oswald', Tahoma, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tymo-player-wrapper{
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 500px;
    box-sizing: border-box;
    top: 70px;
    padding: 15px 10px 10px 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 60px 20px 10px 0 ;
    background-color: rgba(255, 0, 0, 0.3);
    background-image: linear-gradient(to top, maroon , rgba(150, 0, 0, 0.1 ));
    z-index: 2;
}
.tymo-player-wrapper.active{
    display: flex;
}
.tymo-player-cover-art{
    position: relative;
    aspect-ratio : 1 / 1;
   /* width: 350px;
      height: 350px;*/
      border: 1px solid rgba(255, 0, 0, 0.1);
      border-radius: 60px 20px 10px 0 ;
    width: 90%;
    padding-bottom: 5px;
}
.tymo-player-wrapper #tymoAudioPlayer{
    position: relative;
    width: 100%;
    height: 30px;
    background-color: rgba(255, 0, 0, 0.1);
    /*bottom: 5px;*/
}
.tymo-player-song-title{
    color: aliceblue;
    font-family: 'Oswald', Tahoma, Arial;
    font-size: large;
    font-weight: bold;
}
.tymo-player-song-genres-wrapper{
    position: relative;
    display: inline-flex;
    align-items: center;
    /*padding-bottom: 10px;*/
    gap: 10px;
    /*border: 1px solid green;*/
}
.tymo-player-song-genre{
    color: whitesmoke;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 0 5px;
    font-size: small;
}
.tymo-player-song-synopsis{
    color: rgb(239, 126, 114);
    font-size: 12px;
    font-style: oblique;
}
.tymo-player-song-platforms-wrapper{
    position: relative;
    /*display: grid;
    grid
    /*max-width: 600px;*/
    gap: 20px;
}
.tymo-player-song-platform {
    padding-right: 10px;
}
.tymo-player-stream{
    position: relative;
    display: block;
    left: 0;
    color: azure;
    font-size: small;
}