/* = = = = = = = = = = = = = = = =
    MAIN
= = = = = = = = = = = = = = = = */
*{
  margin: 0;
  padding: 0;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

body{
  z-index: -10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;

  background-color: rgb(0, 0, 0);

  -webkit-user-select: none; /* Chrome / Safari */
  -moz-user-select: none;    /* Firefox */
  user-select: none;

  header{
    width: 100%;
    

  }

  .scare{
    position: absolute;
    top: 500px;
    left: 500px;
    width: 16px;
    height: 16px;
    background-color: black;
  }

  main{
    flex: 1;
    width: 100%;
    background-color: rgb(255, 0, 0);

    *{
      width: max-content;
    }

    audio{
      width: 15em;
      height: 5em;
      background-color: white;
    }
  }

  footer{
    width: 100%;
  }
}

/* button toggle play audio */
#audioplayer{
  z-index: 10;
  position: absolute;

  display: flex;
  flex-direction: column;
  width: 30em;

  input[type="range"]{
    color: white;
  }
  
  button{
    background-color: rgb(0, 0, 0);
  }
}
