@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
/* Reset style */
* {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #CCCCCC;
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto; /* centers content*/
  padding: 3%;
}

.rosteraero {
  color: #E94D66;
}


#error_div {
  color: #E94D66;
}

#error_div > ul {
  list-style-type: none;
}


input {
  width: 100%;
  max-width: 400px;
  padding: 8px 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  box-sizing: border-box;
}

.button {
  background-color: #E94D66; /* Green */
  border: none;
  color: white;
  padding: 8px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

#wrapper {
  /* min-height: 500px; */
  background-color: #F3F3F3;
  border-radius: 20px;
  /* top, right, bottom, left*/
  padding: 2% 2% 2% 2%;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

#header {
  text-align: center;
}

#content {
  text-align: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

#navigation {
  text-align: center;
  display: flex;
  justify-content: space-around;
  margin: auto;
  width: 75%;
  padding-bottom: 10px;
}

footer {
}

#storelinks {
  text-align: center;
  display: flex;
  justify-content: space-around;
  width: 50%; /*reduce space used by this div*/
  margin: auto; /*center content*/
  padding-bottom: 5px;
}

#storelinks > a > img {
  max-height: 40px;
}

#legal {
  font-size: 12px;
  text-align: center;
}

#legallinks {
  padding-top: 5px;
  font-size: 12px;
  text-align: center;
  display: flex;
  justify-content: space-around;
  width: 35%; /*reduce space used by this div*/
  margin: auto; /*center content*/
}
