@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Roboto:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
    border: 0;

}

body {
    font-family: 'Open Sans', sans-serif;
}

.banner {
    background-image: url("../images/banner.jpg");
    text-decoration: solid;
    width: 100%;
      /* Set a specific height */
  min-height: 500px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
    color: white;
    text-align: center;
    font-size: 30px;
}

.content {
    margin-top: 50px;
    width: 550px;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
}

input[type=number] {
    border: 1px solid;
    border-radius: 5px;
    width: 40px;
    height: 20px;
}

input[type=password] {
    border: 1px solid;
    border-radius: 5px;
    width: 100px;
    height: 20px;
}

input[type=submit], button {
    background-color: black;
    border-radius: 5px;
    color: white;
    width: 100px;
    height: 30px;
    font-family: 'Open Sans', sans-serif;
}