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

body {
  background-color: rgb(17, 17, 17);
  color: #fff;
  font-family: 'VT323', monospace;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  cursor: crosshair;
}

/* Container Principal */
.main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 1em;
  height: auto;
}

a {
  text-decoration: none;
  color: #888888;
}

/* Bloco do nome e texto */
.lucas {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1rem;
  max-width: 60%;
  align-items: flex-start;
  align-content: center;
  flex-wrap: wrap;
}

.title {
  font-family: 'Codystar', sans-serif;
  font-size: 5vw;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.v4_2 {
  font-size: 1.3rem;
  max-width: 100%;
  text-align: right;
}

.v4_3 {
  display: inline-block;
  background-color: rgb(255, 255, 255);
  color: black;
  padding: 0.2rem 0.5rem;
  font-size: 1.3rem;
  font-family: 'VT323', monospace;
}

/* Menu lateral */
.menu {
  font-family: 'Italiana', serif;
  font-size: 2.5rem;
  list-style: none;
  text-align: right;
  line-height: 3.2rem;
  color: #888888;
}

.menu a:hover {
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

/* Rodapé com .wtf */
body::after {
  content: ".wtf";
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  font-family: 'Zilla Slab Highlight', cursive;
  font-size: 1.1rem;
  color: #888;
}


.carossel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.carossel ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.carossel li {
  padding-left: 15px;
  font-size: 1.2em;
  color: #888888;
}

.carossel li:hover {
  color: #f1f1f1;
  transition: 0.8s;
  cursor: pointer;
}

.gif1, .gif2{
  padding: 5px;
  width: 15%;
}

footer{
  width: 100%;
  height: 40vh;
  background-image: url("assets/wtf4_gif.gif");
  background-size: cover; /* Faz o GIF cobrir toda a área do footer */
  background-position: center; /* Centraliza o GIF */
  background-repeat: no-repeat; /* Evita repetição do GIF */
  background-origin: border-box;
  color: rgb(0, 0, 0); /* Cor do texto para contraste */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Italiana', serif;;
}

footer h1 {
  background-color: #fff;
  padding: 10px;
  font-size: 3em;
}