:root {
  --primary-color: #ffd900;
  --link-color: #ffd900;
  --cor-botao-hover: #000;
}

h1{
  border: 4px none red;
}

pre{
  text-align: left;
}

span{
  color: rgb(205, 167, 242);
}

body {
  margin: 0 auto;
  padding: 20px;
  font-family: 'Pixelify Sans', sans-serif;
  background-image: url('Planodefundo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: var(--primary-color);
  background-attachment: fixed;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 1px;
  text-transform: uppercase;
}

main h2 {
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h2 {
  font-size: 40px;
  text-align: center;
}

.MarginMenu{
  margin: 50px 0 2px 0;
}

main h3 {
  font-size: 28px;
}

h3, h4 {
  text-align: left;
  font-size: 30px;
}

dl {
  font-size: 20px;
}

main{
  text-align: center;
  color: aliceblue;
  padding-bottom: 20rem;
}

.mainCurriculo{
 padding-bottom: 0;
}

.sobre{
  list-style: none;
}

.espaçamento{
  padding-bottom: 20rem;
}
  
header h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

main p {
  font-size: 25px;
  margin-bottom: 30px;
}

a.contato, a.navegacao {
  display: inline-block;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--link-color);
  border-radius: 50px;
  transition: 0.2s ease-in;
  margin-bottom: 20px;
}

.contato li {
  margin-bottom: 20px;
  list-style-type: none;
  text-align: center;
}

main a:hover {
  background-color: var(--primary-color);
  color: var(--cor-botao-hover);
}

.center {
  margin: auto;
  background-color: aliceblue;
  padding: 20px;
  display: block;
  width: 30%;
  border-style: solid;
  border-width: 6px;
  text-align: center;
  height: auto;
  border-radius: 40px;
}

.center p {
  margin-top: 46px;
  text-transform: uppercase;
}

.center h2 {
  margin-top: 5px;
}

nav {
  text-align: center;
}

nav ul {
  list-style: flex;
  justify-content: center;
  list-style-type: none;
  flex-direction: column;
}

nav ul li {
  display: inline-block;
  margin: 0 10px;
}

footer{
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: rgb(26, 25, 25);
  width: 100vw;
  
}

footer ul{
  display: flex;
  justify-content: center;
}

footer ul li{
  list-style-type: none;
}

ul{
  padding: 0;
}

footer ul li a{
  color: #ffffff;
  margin: 0 20px;
  font-size: xx-large;
}

a {
  text-decoration: none;
  font-size: 1.5rem;
  background-color: transparent;
  padding: 10px 20px;
  margin-left: 20px;
  margin: 42 0 16 0;
  cursor: pointer;
  color: var(--link-color);
  border-radius: 50px;
  transition: 0.2s ease-in;
  margin-bottom: 20px;
}

td,th{
  border: 1px solid white;
  width: 200px;
  text-align: center;
}

thead{
  border: 2px solid white;
  background-color: rgb(255, 255, 255);
}

table{
  border: 5px solid white;
  background-color: #ffd900;
  color: black;
}

/* Estilos para a versão desktop */
@media only screen and (min-width: 769px) {
  main h2 {
    font-size: 36px;
  }

  nav ul {
    list-style: flex;
    flex-direction: row;
    justify-content: center;  
  }

  header h1 {
    font-size: 48px;
  }

  main p {
    font-size: 30px;
  }

  a, a.contato, a.navegacao {
    padding: 12px 24px;
    font-size: 18px;
  }

  .MarginMenu{
    margin: 50px 0 2px 0;
  }
  
}