h2 {
  color: rgb(128, 200, 255);
}

h1 span:first-child {
  color: rgb(128, 200, 255);
}

h1 span:last-child {
  color: rgb(128, 200, 255);
}

body {
  font-family: Arial, sans-serif;
  color: white;
}

nav {
  background-color: rgb(128, 200, 255);
  padding: 10px;
}
        
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-right: 15px;
}
nav ul li a {
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

.caminhoes {
  width: 50%;
}

.logo {
  width: 15%;
  height: 15%;
}

.video {
  width: 100%;
  height: 100vh; /* Preenche a altura da tela */
  object-fit: cover; /* Faz o vídeo cobrir a área sem distorcer */
  position: fixed; /* Fixa o vídeo no fundo */
  top: 0;
  left: 0;
  z-index: -1; /* Coloca o vídeo atrás do conteúdo */
}

a {
  color: white;
}