@import url("https://fonts.googleapis.com/css2?family=Jost:wght@200;400&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
  background: #222;
  color: #cdc6ae;
}

h1 {
  font-size: 40px;
}

form {
  margin: 40px;
  border: 2px solid #a3b4a2;
  border-radius: 20px;
  background: #2b3538;
  text-align: center;
  padding: 10px;
}

.box input[type="date"],
.box input[type="password"] {
  border: 0;
  background: none;
  display: block;
  margin: 0px auto;
  text-align: center;
  border: 2px solid #a3b4a2;
  padding: 10px;
  width: 60%;
  outline: none;
  color: #cdc6ae;
  border-radius: 20px;
  transition: 0.25s;
  font-weight: bold;
  font-size: 14px;
}

.box input[type="submit"] {
  border: 0;
  background: none;
  width: 150px;
  font-size: 14px;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #a3b4a2;
  padding: 10px;
  outline: none;
  color: #cdc6ae;
  border-radius: 20px;
  transition: 0.25s;
  cursor: pointer;
  font-weight: bold;
}
.box input[type="submit"]:hover {
  background: #a3b4a2;
  border: 2px solid A3B4A2;
  color: #187795;
  width: 200px;
}

a {
  text-decoration: none;
  color: #cdc6ae;
}

a:vistied {
  color: #cdc6ae;
}

a:hover {
  color: #187795;
}

@media only screen and (max-width: 600px) {
  .box input[type="submit"],
  .box input[type="date"],
  .box input[type="password"] {
    font-size: 10px;
  }
}

footer {
  position: fixed;
  left: 0px;
  bottom: 0px;
}


.article {
  padding: 2% 10%;
  font-size: 1.2em;
}

a {
  color:yellow;
}