/* General */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;

  background-color: rgb(47, 48, 45);
  background-size: 400px 300px , 1700px 900px;

}

body a{
  
  font: calibri;
  font-size:  30px ;
  color: white;
  font-weight: bold;
}

body h1 {
  font-size: 40px;
  font-weight: bold;
  -webkit-text-fill-color: rgb(253, 6, 6);
  -webkit-text-stroke: 1px black;
}

body a:hover{

  -webkit-text-fill-color: rgb(255, 250, 250);
  -webkit-text-stroke: 1px rgb(255, 5, 5);
}



/* Input Forms*/
input[type="text"], input[type="password"]{
  outline: none;
  padding: 20px;
  display: block;
  width: 300px;
  border-radius: 3px;
  border: 1px solid rgb(240, 6, 6);
  margin: 20px auto;
  box-shadow: 7px 13px 37px #000;
  background-color: rgb(241, 234, 253);
}

input[type="submit"] {
  padding: 10px;
  color: #fff;
  background: #0098cb;
  width: 320px;
  margin: 20px auto;
  margin-top: 0;
  border: 0;
  border-radius: 3px;
  cursor: pointer;

}
input[type="submit"]:hover {
  background-color: #1014d6;

}


/* Header */
header {
  border-bottom: 2px solid #eee;
  padding: 20px 0;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;

}
header a {
  text-decoration: none;
  color: #333;

}