/* Definindo a fonte local */
@font-face {
  font-family: "Pixelify Sans"; /* Nome da fonte que você vai usar */
  src: url("/font/Pixelify\ Sans.ttf") format("truetype"); /* Caminho relativo para a fonte */
  font-weight: 400; /* Peso da fonte regular */
  font-style: normal; /* Estilo normal */
}

@font-face {
  font-family: "Atemica"; /* Nome da fonte que você vai usar */
  src: url("/font/Atemica\ SansItalic.otf") format("truetype"); /* Caminho relativo para a fonte */
  font-weight: 400; /* Peso da fonte regular */
  font-style: normal; /* Estilo normal */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgb(255, 255, 255);
}

.container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgb(0, 153, 255);
  text-align: center;
  width: 300px;
}

h1 {
  margin-bottom: 20px;
  font-size: 22px;
  font-family: "Atemica", normal;
}

h4 {
  margin-bottom: 20px;
  font-size: 15px;
  font-family: "Pixelify Sans", serif;
}

.input-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #2193b0;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #176d81;
}

#resultado {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
}

#dicas {
  margin-top: 10px;
  font-size: 14px;
}
