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

html,
body {
  overflow-x: hidden;
}

body {
  background: #111;
  color: white;
  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;
}

.historia {
  width: 100%;
  height: 100vh;

  padding: 60px 80px;
}

.titulo h1 {
  font-size: 140px;
  color: #333;
  margin-left: 80px;

  line-height: 120px;
}

.titulo h2 {
  font-size: 60px;
  margin-left: 80px;

  margin-bottom: 50px;
}


.conteudo {
  display: flex;
  align-items: center;
  gap: 60px;

}

.conteudo2015 {
  display: flex;
  align-items: center;
  gap: 60px;

  margin-left: 120px;
}

.conteudo img {
  width: 500px;
  filter: grayscale(100%);
}

.conteudo p {
  display: flex;
  width: 500px;
  line-height: 38px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-size: 20px;
  color: #ccc;
}

#premios {
  padding: 100px 80px;
  background: #111;
}

table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  margin-top: 40px;
}

th,
td {
  border: 1px solid #333;
  padding: 20px;
  text-align: center;
}

th {
  background: black;
  color: white;
}

td {
  background: #1a1a1a;
  color: white;
}

tr:hover td {
  background: #222;
  transition: 0.3s;
}