body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(2, 2, 2);
  text-align: center;
}

header {
  background-color: #000000;
  color: #ffffff;
  padding: 20px;
  text-align: center;
}

.container {
  background-color: rgb(0, 0, 0);
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
  color: white;
}

.main-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgb(255, 255, 255);
}

.navbar {
  background-color: black;
  overflow: hidden;
  text-align: center;
}

.navbar a {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  transition: background-color 0.3s;
}

.navbar a:hover {
  background-color: #ffffff;
  color: black;
}

@media only screen and (max-width: 600px) {
  .container {
    font-size: 14px;
  }

  .main-content {
    font-size: 14px;
  }

  .texto-do-slipknot {
    font-size: 14px;
  }

  .discografia {
    font-size: 14px;
  }
}
.slipknot-imagem {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.corey {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.jim {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.mick {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.sid {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.clown {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.craig {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.jay {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.alessandro {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.jay-2 {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.direitos {
  border-radius: 50%;
  text-align: center;
  font-size: small;
  margin-bottom: 40px;
}

.minha-foto {
  width: 60px;
  margin-top: 80px;
}

.curiosidades-slipknot {
  text-align: center;
}

.link-insta {
  color: #fff;
}

.slipknot-curiosidades-imagem {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.musica-favorita video {
  width: 1000px;
  height: 600px;
  margin-left: -100px;
}

@media screen and (min-width: 768px) {
  .musica-favorita video {
    width: 1200px;
    margin-left: -200px;
  }
}

@media screen and (max-width: 767px) {
  .musica-favorita video {
    width: 100%;
    margin-left: 0;
  }
}
.mascaras-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  color: white;
  text-align: center;
}

.mascaras-container h1 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #9c1c2a;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(156, 28, 42, 0.5);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 70vh;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.member-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(156, 28, 42, 0.7);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(156, 28, 42, 1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #9c1c2a;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .slider {
    height: 50vh;
  }

  .member-name {
    font-size: 1.2rem;
    padding: 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 40vh;
  }

  .mascaras-container h1 {
    font-size: 1.4rem;
  }

  .member-name {
    font-size: 1rem;
  }
}
.mascara-corey,
.mascara-corey2,
.mascara-jim,
.mascara-jim2,
.mascara-mick,
.mascara-mick2,
.mascara-sid,
.mascara-sid2,
.mascara-shawn,
.mascara-shawn2,
.mascara-craig,
.mascara-craig2,
.mascara-jay,
.mascara-jay2,
.mascara-alessandro,
.mascara-alessandro2 {
  width: 100%;
  height: 800px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.dead-memories {
  position: relative;
  padding-bottom: 56.25%; /* Proporção de 16:9 (9 dividido por 16) */
  height: 0;
  overflow: hidden;
}

.dead-memories iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  text-align: center;
}
form {
  margin-top: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #555;
  border-radius: 3px;
  background-color: #444;
  color: white;
}

textarea {
  height: 100px;
}

input[type="submit"] {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 3px;
}

input[type="submit"]:hover {
  background-color: #9c1c2a;
}
