@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single+Ink:slnt,wght,ELSH,SZP1,SZP2@-8..0,100..900,54.1,30,30&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Video player */

.videoplayer {
  text-align: center;
  width: 100%;
  padding: 50px 25px;
}

.quadrado {
  border: 1px solid #ededed;
  width: 100px;
  height: 100px;
  padding: 20px;
  ;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f9;
  background-image: url("/images/bg-videos.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: #333;
  padding: 20px;
}

h1,
h2,
h3 {
  font-family: "Courier New", Courier, monospace;
}

h2 {
  font-family: 'Bitcount Prop Single Ink', monospace;

}

header {
  background-color: #8B0000;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

header h2 {
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

section {
  margin: 20px 0;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.projeto {
  margin-bottom: 15px;
}

footer {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  background: #6200ea;
  color: white;
  border-radius: 8px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* animacao marquee */

.marquee-container {
  overflow: hidden;
  /* Hide the text when it's outside the box */
  white-space: nowrap;
  /* Keep text on one line */

}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  /* Start the text off-screen to the right */
  animation: scroll-left 10s linear infinite;
}

.voltar {

  background-color: #DA47B9;
  color: white;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}



/* Responsividade */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  section {
    padding: 15px;
  }
}