body {
  background-color: #f8f0e3;
  margin: 0;
  padding: 0;
  font-family: 'Instrument Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column; 
  align-items: center;
  text-align: center;
  gap: 20px;
}


.inicio h1 {
  color: var(--red);
  font-weight: bold;
  margin: 30px 0;
  margin-top: 60px;
}

.corpo img {
  width: 150px;
  height: auto;
  margin-top: 20px;
}

.marca {
  display: none;
}

.fim p {
  font-size: 23px;
  font-weight: bold;
  color: var(--red);
  margin: 30px 0;
  text-align: left;
}

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

.botao button {
  width: 300px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 2px 3px 0px black;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.botao .entrar {
  background-color: black;
  color: white;
  
}

.botao .entrar:hover {
  background-color: var(--medium-yellow);
  color: var(--black);
}

.botao .criar {
  background-color: #FFC257;
  color: var(--black);
  border: var(--border);

}

.botao .criar:hover {
  background-color: var(--medium-yellow);
  color: var(--black);

}


.modal {
    display: none; 
   
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); 
    justify-content: center;
    align-items: center;
}

.modal-conteudo {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    position: relative;
    background-color:  #ffc257;
    width: 320px;
    border: solid 2px black;
    box-shadow: 1px 3px 0px black;
}

.aviso img{
  margin-top: 20px;
}

.aviso p {
  font-family: 'Instrument Sans', sans-serif;
   
}

.aviso strong {
    font-weight: bold;
    color: black;
}



.butao button {
    display: flex;
    flex-direction: column; 
    gap: 5px; 
    align-items: center; 
    margin-top: 20px;

    width: 200px;
    padding: 5px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    font-family:'Instrument Sans', sans-serif;
    cursor: pointer;
    box-shadow: 2px 3px 0px black;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
    cursor: pointer;
    margin-left: 60px;
    margin-top: 30px;
   

    background-color: black;
    color: white;
    border: 1px solid white;

  
}

