* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
  position: relative;
  /*height: 100%;
  max-height: 4320px;*/
  width: 100%;
}

body {
    font-family: 'Oswald', Tahoma, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.audio-player-root {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
    padding-top: 64px;
    background-color: rgba(16, 15, 15, 0.8);

}
#waveform-style-menu {
    z-index: 100 !important;
}


#tymo-sign-in-container {
    padding: 0;
    background-color: 'rgba(0, 0, 0, 0.7)';
    animation: fadeInScale 0.6s ease-out;
  }
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.95);
      filter: blur(2px);
    }
    to {
      opacity: 1;
      transform: scale(1);
      filter: blur(0);
    }
  }
  