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

body {
  background: #111;
  font-family: 'Poppins', sans-serif;
}

header {
  width: 100%;
  justify-content: flex-end;
  display: flex;
  align-items: center;

  padding: 30px 80px;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 15px;

  transition: 0.3s;
}

nav a:hover {
  opacity: 0.5;
}

.titulo {
  width: 100%;

  padding: 60px 40px 20px 40px;
}

.titulo h1 {
  color: white;

  font-size: 100px;
  font-weight: 900;

  margin-bottom: 10px;
}

.titulo p {
  color: #888;

  font-size: 18px;
}


.lista {
  width: 100%;

  padding: 20px 40px 40px 40px;

  display: flex;
  flex-direction: column;

  gap: 25px;
}

.musica {
  display: flex;
  align-items: center;

  gap: 25px;

  background: #1a1a1a;

  padding: 20px;

  transition: 0.3s;

  cursor: pointer;
}

.musica:hover {
  transform: scale(1.02);
}

.musica img {
  width: 90px;
  height: 90px;

  object-fit: cover;
}

.texto h2 {
  color: white;

  font-size: 28px;

  margin-bottom: 5px;
}

.texto p {
  color: #888;
}

.titulo {
  padding: 40px;
}

.gatinho {
  width: 250px;

  margin-bottom: 20px;
}

.titulo h1 {
  color: white;

  font-size: 100px;

  margin-bottom: 10px;
}

.titulo p {
  color: #888;

  font-size: 18px;
}

.linha {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.linha img {
  width: 300px;

  object-fit: contain;
}