* {
  padding: 0;
  margin: 0;
}

body {
  background-color: rgb(253, 251, 251);
  padding-top: 70px;
  font-family: Courier, sans-serif, Arial;
}

#cabecalho {
  background-color: rgb(50, 50, 255);
  position: fixed;
  width: 100%;
  height: 70px;
  top: 0;
}

#cabecalho > h1 {
  width: max-content;
  margin: auto;
  text-shadow: 1px 1px 5px rgba(100, 255, 0, 0.7);
  line-height: 70px;
  text-align: center;
}

#minha_foto {
  display: block;
  width: 130px;
  border: lawngreen 5px solid;
  border-radius: 10px;
  margin: auto;
  margin-top: 10px;
  user-select: contain;
}

#tabelas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

table {
  margin: 10px;
  border-color: blue;
  border-style: solid;
  background-color: rgb(200, 200, 200);
  border-collapse: collapse;
}

td {
  padding: 5px;
  border-color: blue;
  border-style: solid;
  border-width: 5px;
}

.titulo-tabela {
  text-align: center;
  font-weight: 900;
  font-size: 22px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

ol , ul {
  list-style-position: inside;
}

#licoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.lado-esquerdo , .lado-direito {
  background-color: lawngreen;
  width: 40%;
  min-width: 250px;
  padding: 15px;
  border-radius: 10px;
  margin: 10px;
}

#licoes h2 {
  padding-bottom: 15px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}

footer {
  background-color: rgb(50, 50, 255);
  padding: 10px;
  text-align: center;
  margin-top: 10px;
}

footer a {
  font-size: 20px;
  color: black;
  text-decoration: none;
  font-weight: 900;
  padding-right: 22px;
  background-image: url('../img/icon/nova-janela.png');
  background-position: right;
  background-repeat: no-repeat;
}

footer a:hover {
  border-bottom: solid lawngreen 5px;
}
