/*
kék : #1A2440
mustár : #F2B544
narancs : #D97823
... : #BF4417
bordó : #590202
*/

html {
  background-image: url("../img/mountain.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-color: #272822;
}

body {
  font-family: Arial, sans-serif;
}

h1{
  color: #590202;
  text-align: center;
  background-color: #F2B544;
  border-radius: 10px;
  border: 2px solid black;
  box-shadow: 5px 5px 10px black;

  max-width: 400px;
  margin: 20px auto;
  padding: 10px 20px;   

}

label, legend{
  font-weight: bold;
  margin-top: 1rem;
  padding-top: 1rem;
}

input[type="text"] {
  margin-bottom: 1rem;
}

/**/
  
input, select, textarea, button {
  box-sizing: border-box;
}

@media (max-width: 600px) {
  body {
    font-size: 100%;
  }
}

input[type="text"] {
  width: 100%;
  max-width: 500px;
}

textarea {
  width: 100%;
  max-width: 600px;
  height: auto;
  resize: vertical;
  margin-bottom: 1rem;
}
  

  
main {
  background-color: #F2B544;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  margin-left: 20%;
}
 
  
button {
  background-color: #1A2440;
  color: #F2B544;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
  
button:hover {
  background-color: #D97823;
}
  
fieldset{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* MENUBAR MODIFIKACIO */
.menu-bar a:hover {
  background-color: #384001;
  border: 2px solid #A0A603;
}

.menu-bar a.active {
  background-color: #A0A603;
  color: black;
  font-weight: bold;
  border: 2px solid #384001;
}