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

body, html {
    height: 100%;

}

body {
  background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('./img/nouki1.png'); /* Background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Texturina", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;

}

.container {
    text-align: center;
}

.logo {
    max-width: 460px;
    width: 70%;
}

.links {
    color: #FFF;
    position: absolute;
    bottom: 20px;
    width: 70%;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
}

.links a {
    color: #FFF;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    opacity: 0.8;
}

.links a:hover {
    text-decoration: underline;
    opacity: 1;

}

.top {
    color: #FFF;
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    line-height: 1.5;
}





#playPauseBtn {
  margin: auto;
  position: relative;
  text-align: center;
      width: 80px;
      height: 80px;
      padding: 20px 20px;
      font-size: 18px;
      cursor: pointer;
      background-color: black;
      background-image: url(./img/music1-play.jpg);
      background-size: cover;

      border: none;
      border-radius: 8px;
      opacity: 0.8;
    }

    #playPauseBtn:after {
      font-size: 0.8rem;
      position: absolute;
      bottom: -20px;
      left: -40px;
      right: -40px;

      content: 'Ya Nero 3030 — Brenda';
      color: white;
      opacity: 0.7;
      font-family: "Texturina", serif;

        }

    #playPauseBtn:hover {
      opacity: 1;
    }

    #playPauseBtn.pause {
      opacity: 0.9;
      background-image: url(./img/music1-pause.jpg);
    }
