
body {
  margin: 0;
  padding: 0;
  font-family: "Georgia", serif;
  color: #3d2c1d;
  text-align: center;

  /* Background image */
  background-image: url("dino_background.jpg");
  background-size: cover;       
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; 
  min-height: 100vh;

  
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;

  
  background: rgba(255, 248, 230, 0.4);
  pointer-events: none;
  z-index: -1;
}


h1 {
  font-size: 3rem;
  margin-top: 40px;
  color: #593f24;
  text-shadow: 3px 3px #e8d8c0;
  font-family: "Palatino Linotype", serif;
  letter-spacing: 3px;
}


form {
  display: inline-block;
  margin-top: 30px;
  padding: 35px 45px;

  background: #f3eadb;
  border: 6px solid #7b6040;
  border-radius: 12px;

  
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(0, 0, 0, 0.4);
}


label {
  font-size: 1.1rem;
  font-weight: bold;
  color: #4e3b26;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: 3px solid #7b6040;
  background-color: #f9f3e8;
  font-size: 1rem;
  transition: 0.2s;
}

input:focus {
  outline: none;
  background-color: #fff9ee;
  border-color: #a4845b;
}


button {
  background: #7b6040;
  color: #fff4e1;
  border: 3px solid #5f472d;
  padding: 12px 22px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
  letter-spacing: 1px;
  margin-top: 10px;
}

button:hover {
  background: #9b7a52;
  transform: translateY(-2px);
}


a {
  color: #7b5126;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #9b7042;
  text-decoration: underline;
}

p {
  margin-top: 20px;
  font-size: 1.1rem;
}
