*{
    background-color: #1c6097;
}

body{
    margin: 0;
}

.nome {
  color: #FF6347;
  display: flex;
  align-items: center;
  font-weight: normal  ;
  background-color: rgb(13, 65, 133);
}

.nome > div {
  background-color: rgb(13, 65, 133);
}

.nome > div > img {
  background-color: rgb(13, 65, 133);
}

h1 {
    color: #fff;
    font-size:30px;
    font-weight:900;
    background-color: rgb(95, 159, 241);
    text-shadow: -1px 0 #FF6347, 0 1px #FF6347,
      1px 0 #FF6347, 0 -1px #FF6347;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FF6347;
}

h2 {
  color: #fff;
  font-size:20px;
  font-weight:900;
  background-color: rgb(95, 159, 241);
  text-shadow: -1px 0 #FF6347, 0 1px #FF6347,
    1px 0 #FF6347, 0 -1px #FF6347;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FF6347;
}

.botao1 {
    background-image: linear-gradient(#FFA07A, #FF6347);
    background-color: rgb(13, 65, 133);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    font-size: 15px;
}

.botao1:hover {
    background-image: linear-gradient(#FF6347,#FFA07A);

}

.botao2 {
    background-image: linear-gradient(#87CEFA, #4169E1);
    background-color: rgb(13, 65, 133);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    padding: 5px;
    border-style: solid; 
    border-width: 1px;
    font-size: 15px;
}

.botao2:hover {
    background-image: linear-gradient(#4169E1,#87CEFA );

}

.rodape {
    grid-area: rodape;
    display: flex;
    padding-top: 3px;
    padding-bottom: 3px;
    background-color: rgb(13, 65, 133);
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 100vh;
    max-height: 50px;
}

/* ------Barras de rolagem--------------*/

/*Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgb(13, 65, 133) rgb(86, 154, 243);
  }
  
  /*Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 12px;
  }
  
  *::-webkit-scrollbar-track {
    background: rgb(86, 154, 243);
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: rgb(13, 65, 133);
    border-radius: 20px;
    border: 3px solid rgb(86, 154, 243);
  }
  /* ------Fim Barras de rolagem--------------*/

select{
  background-color: #fff;
  font-size: 15px;
  border-radius: 5px;
  padding: 3px;
  border-style: solid;
  border-width: 2px;
  border-color: #FF6347;
  width: 200px;
}

select > option{
  background-color: #fff;
  font-size: 15px;
  padding: 3px;
  color: #FF6347;
}

input{
  background-color: #fff;
  font-size: 15px;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: #FF6347;
}
