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

html,
body {
  overflow-x: hidden;
}

body {

  background: linear-gradient(to bottom, #111, #1a1a1a);

  font-family: 'Poppins', sans-serif;
}

header {
  width: 100%;

  display: flex;
  justify-content: flex-end;
  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;
}

.albuns {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;

  padding: 40px;
}

.albuns img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}

.albuns img:hover {
  transform: scale(1.04);

  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);

  .popup {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.8);

    backdrop-filter: blur(10px);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 999;
  }

}

.popup-conteudo {
  background: #1a1a1a;

  width: 900px;

  display: flex;
  gap: 40px;

  padding: 40px;

  position: relative;
}

.popup-conteudo img {
  width: 350px;
  height: 350px;

  object-fit: cover;
}

.popup-texto {
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-texto h1 {
  font-size: 60px;

  margin-bottom: 20px;
}

.popup-texto p {
  font-size: 20px;
  line-height: 35px;

  color: #ccc;
}

.fechar {
  position: absolute;

  top: 15px;
  right: 25px;

  font-size: 40px;

  color: white;

  cursor: pointer;
}

.titulo {
  width: 100%;

  padding: 50px 40px 10px 40px;
}

.titulo h1 {
  color: rgb(255, 255, 255);

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

  margin-bottom: 10px;
}

.titulo p {
  color: #888;

  font-size: 18px;
}

.album {
  display: flex;

  flex-direction: column;

  align-items: center;
}

.album h2 {
  color: rgb(246, 235, 235);
}

.album p {
  color: rgb(127, 112, 112);

  font-size: 18px;
}