/*Fontes*/
.noto-sans-limelight {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 150;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.limelight-regular {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.old-standard-tt-regular {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: normal;
}

.old-standard-tt-bold {
  font-family: "Old Standard TT", serif;
  font-weight: 700;
  font-style: normal;
}

.old-standard-tt-regular-italic {
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  font-style: italic;
}

.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

.courier-prime-bold {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
}

.courier-prime-regular-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: italic;
}

.courier-prime-bold-italic {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: italic;
}



/*Seção principal da página*/
* {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  height: 100%;
  background-color: #ede0d0;
}

.wrapper {
  position: relative;
  display: block;
  max-height: fit-content;
  min-height: min-content;
  margin: 2em;
  padding-bottom: 15vh;
}

/*Header*/
header {
  width: 100%;
}

#titleSection {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

#mainTitle {
  font-family: "Limelight", sans-serif;
  font-size: 5em;
}

#mainTitle a {
  text-decoration: none;
  color: #04241C;
  ;
}

#versionNTime {
  grid-column: 1;
  font-family: "Courier Prime", monospace;
  font-size: 1em;
  font-weight: bold;
  border: 2px solid #04241C;
  border-radius: 10px;
  border-style: outset;
  box-shadow: 4px 4px #04241C;
  padding: 10px;
}

#titles {
  grid-column: 2;
  text-align: center;
}

#profilePic {
  grid-column: 3;
  max-width: 113.39px;
  max-height: 151.181px;
  display: block;
  border: 2px solid #04241C;
  border-radius: 10px;
  border-style: outset;
  box-shadow: 4px 4px #04241C;
}



/*Nav Bar*/
#mainNav {
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: #ede0d0;
  color: #04241C;
  border-bottom: 2px solid #04241C;
}

#mainNav>ul {
  list-style-type: none;
  display: flex;
  margin: auto;
}

.navItem {
  box-shadow: inset 0 0 0 0 #ede0d0;
  font-weight: 700;
  margin: 0 25px;
  color: #04241C;
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
  margin: .25rem;
  transition: color .2s ease-in-out, box-shadow .2s ease-in-out, padding .2s ease-in-out, border-radius .2s ease-in-out;
}

.navItem:hover {
  color: #ede0d0;
  box-shadow: inset 100px 0 0 0 #04241C;
  text-decoration: underline;
  border-radius: 5px;
  padding: 5px;
}

/*Mensagem de Introdução do Portfólio*/
#mainPage {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 1;
  gap: 20px;
  align-items: start;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

#msgInicial {
  border-right: 2px solid #04241C;
  padding-right: 20px;
}

#textMsgInicial {
  font-family: "Courier Prime", monospace;
  font-weight: bold;
  grid-column: 1;
  grid-row: 1;
  font-size: 1.5em;
  list-style-type: none;
  padding: 20px;
}

#botaoContato {
  text-decoration: underline;
  color: #BF281B;
}

#textoSecundario {
  font-family: "Courier Prime", monospace;
  font-weight: bold;

  grid-column: 2;
  grid-row: 1;

  overflow: hidden;
  font-size: 1.5em;
  list-style-type: none;
  padding: 20px;
}

/*Seção do Footer*/
footer {
  background-color: #ede0d0;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 100px;
  justify-items: left;
  margin-top: 5vh;
  padding: 15px;
  padding-top: 50px;
  border-top: solid 3px #04241C;
}

footer a {
  text-decoration: none;
  color: #04241C;
}

footer a:hover {
  text-decoration: underline;
  color: #ede0d0;
  background-color: #04241C;
  border-radius: 5px;
  padding: 5px;
}

/*Contato > Formulário*/
.form-row {
  margin-bottom: 10px;
}

.form-input {
  display: block;
}

.form-error {
  color: red;
}

#listaProjetos {
  list-style-type: none;

}

#listaProjetos a {
  text-decoration: none;
  color: #BF281B;
}

/*Página de projetos*/
#projetosMainBody {
  font-family: "Courier Prime", monospace;
  font-weight: bold;
  font-size: 1.5em;
  padding: 20px;
}

#listaProjetos {
  list-style-type: none;

}

#listaProjetos a {
  text-decoration: none;
  color: #BF281B;
}

#tituloProjetos {
  margin-left: 2vw;
  text-transform: uppercase;
}

#projetosMainBody p {
  margin-left: 3vw;
}

/*Formulário*/
.content {
  padding: 2rem;
  font-family: "Courier Prime", monospace;
  border: 3px solid #04241C;
  border-style: outset;
  box-shadow: 4px 4px #04241C;
  border-radius: 1rem;
  min-width: 50%;
  max-width: 75%;
  min-height: fit-content;
  overflow: auto;
}

.content form {
  display: flex;
  flex-direction: column;
  position: relative;
}

.content h1 {
  font-size: 2rem;
  text-transform: uppercase;
}

.content p {
  font-size: 1.8rem;
  text-transform: uppercase;
}

.content div {
  margin: 0.1rem;
  padding: 0.5rem;
}

.inputs {
  padding: 0.8rem 0.3rem;
  outline: none;
  border-radius: 0.5rem;
  background-color: #f1ede9;
  border: 3px solid #04241C;
  color: #04241C;
  width: 100%;
  box-sizing: border-box;
  transition: .2s;
}

.inputs:focus {
  border-color: #05614a;
}

.spanRequired {
  font-size: 1rem;
  display: none;
}

button[type="submit"] {
  padding: 1rem;
  font-size: 2rem;
  font-weight: bolder;
  outline: none;
  border: none;
  border-radius: 0.2rem;
  margin-top: 1rem;
  background-color: #04241C;
  color: #ede0d0;
}

button[type="submit"]:hover {
  background-color: #05614a;
}

/*Página do Progresso da Graduação*/
#uniPage {
  padding: 1.5rem;
  margin-bottom: 3rem;
  min-width: 50%;
  max-width: 75%;
  min-height: fit-content;
  overflow: auto;
}

#uniPageTitle {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Courier Prime', monospace;
  text-transform: uppercase;
}

/*Controle responsivo da página através do @media*/
@media (max-width: 868px) {
  .wrapper {
    margin: 1em;
  }

  header {
    width: 100%;
  }

  #titleSection {
    grid-template-columns: 30% 1fr 30%;
    gap: 0.5em;
    width: 80%;
    padding-left: 0.1em;
    padding-right: 0.1em;
    margin: 1rem;
  }

  #versionNTime {
    font-size: 0.8em;
    overflow-wrap: break-word;
  }

  #titles {
    grid-column: 2;
    text-align: center;
  }

  #mainTitle {
    font-size: 2em;
    max-width: min-content;
  }

  #profilePic {
    max-width: fit-content;

  }

  #mainPage {
    display: block;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  #msgInicial {
    border-right: 2px;
    padding-right: 20px;
  }

  #textMsgInicial {
    font-size: 1.3em;
    padding: 20px;
  }

  #botaoContato {
    text-decoration: underline;
  }

  #textoSecundario {
    font-size: 1.3em;
    padding: 20px;
  }

  #projetosMainBody {
    font-size: 1.2em;
  }

  .content {
  padding: 1rem;
  min-width: 90vw;
  max-width: 80vw;
  min-height: fit-content;
  overflow: auto;
}

.boxSelect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

input[type="checkbox"] {
  -ms-transform: scale(3);
  -webkit-transform: scale(3);
  -o-transform: scale(3);
  transform: scale(3);
  padding: 10px;
}

}