@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  list-style: none;
}

a:link,
a:visited,
a {
  color: #000;
  text-align: center;
}
body {
  height: 100vh;
}
.container {
  display: flex;
}

.header-naves {
  position: relative;
  width: 100%;
  z-index: 99;
}

.header-naves:before {
  content: " ";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("/assets/banner-personagens.jpg");
  background-size: cover;
  opacity: 0.6;
}

.menu-inferior {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20%;
  left: auto;
}

.menu-lateral {
  background-color: #fff;
  color: rgb(55, 55, 55);
  width: 300px;
  height: 100vh;

  font-size: 1.2rem;
  font-weight: bold;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-lateral ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 35px 0;
  cursor: pointer;
}

.menu-lateral ul li img {
  margin-bottom: 10px;
}

/* personagens */

.table-naves {
  width: 1200px;

  background-color: #fff;
  padding: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  border-radius: 16px;

  max-width: 1200px;
  /* min-width: 300px; */
}

.table-naves h5 {
  font-weight: bold;
  font-size: 35px;
  margin-bottom: 10px;
}

.table-naves p {
  font-size: 1.1rem;
}

.table-naves table {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

.table-naves table th {
  font-size: 1.2rem;

  border-bottom: 1px solid #5e5e5e;
}

.table-naves table td {
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 0;
}

/* responsividade */

@media (max-width: 900px) and (orientation: landscape) {
  body {
    background-image: url("/assets/banner-personagens.jpg");
    background-size: cover;

    height: 100vh;
    width: 100vw;
  }

  .menu-inferior {
    top: 10%;
  }

  .menu-lateral {
    width: 100px;
    height: 700px;

    font-size: 1rem;
  }

  .logo {
    width: 80px;
  }

  .menu-lateral ul li {
    margin: 15px 0;
    font-size: 12px;
  }

  .menu-lateral ul li img {
    width: 40px;
  }

  .table-naves {
    width: 95%;
    height: 100%;

    padding: 30px;
  }

  .table-naves h5 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .table-naves p {
    font-size: 12px;
    font-weight: lighter;
  }

  .table-naves table {
    margin-top: 25px;
  }

  .table-naves table th {
    font-size: 1.1rem;
    padding: 10px;
  }

  .table-naves table td {
    padding: 10px 0;
  }

  .table-naves table tr {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .body {
    position: relative;
    width: 100%;
    z-index: 99;
  }

  body:before {
    content: " ";
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-image: url("/assets/banner-personagens.jpg");
    background-size: cover;
    opacity: 0.6;
  }

  

  .menu-items {
    display: flex;
    flex-direction: row;
    
  }

  .menu-items ul {
    display: flex;
    justify-content: space-around;
  }

  .menu-lateral {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: white;
    z-index: 99;
  }

  .menu-items p {
    font-size: 12px;
  }

  .menu-lateral ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .menu-lateral ul li {
    margin-right: 20px;
    align-items: center;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
  }

  .menu-lateral ul li img {
    width: 40px;
    display: flex;
    justify-content: space-evenly;

    align-items: center;
    align-self: center;
  }

  .logo {
    width: 80px;
  }

  .table-naves {
    font-size: 12px;
    
    padding: 20px;
   
  }

  .menu-inferior {
    display: flex;
    position: absolute;
    top: 140px;
    right: 20px;
    width: 370px;
  }

  .table-naves h5 {
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 10px;
  }

  .table-naves p {
    font-size: 14px;
  }

  .table-naves th:nth-child(n + 4):nth-child(-n + 7),
  .table-naves td:nth-child(n + 4):nth-child(-n + 7) {
    display: none;
  }

  .header-naves {
    width: 0;
  }

  
}
