body {
    margin: 0;
    background-color: #F3F3F3;
    font-family: arial;
}
@font-face {
  font-family: 'gta';
  src: url('gta.ttf');
}
#banner {
    width: 100vw;
    height: 50vh;
    max-height: 500px;
    font-size: 50pt;
    font-family: gta;
    color: #FFF;
    background-color: #3366ff;
    background-image: url('background.jpg');
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    user-select: none;
}
.large {
  font-family: gta;
  font-size: 25pt;
  color: #3366ff;
}
.larger {
  font-size: 30pt;
}
#content {
  width: 80vw;
  padding: 10vw;
  text-align: left;
}
.big {
    font-size: 60pt;
}
.label {
    color: #3366ff;
}
#email {
    padding: 5px;
    width: calc(100% - 10px);
    outline: none;
    border: none;
    border-bottom: solid 2px #3366ff;
    background-color: #E3E3E3;
    color: #3366ff;
}
#email::placeholder {
    color: #3366ff;
    opacity: 0.7;
}
#apply {
    border: none;
    outline: none;
    letter-spacing: 3px;
    background-color: #3366ff;
    color: #FFF;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 15px;
    padding-bottom: 7px;
    padding-top: 7px;
    width: calc(100% - 60px);
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 1px 3px #333;
}
#center {
    text-align: center;
    margin-top: 30px;
}
#pic {
    width: 100px;
    height: 100px;
}
#apply:hover {
    background: #0040ff;
}
#cash {
  border: none;
  outline: none;
  border-radius: 5px;
  background-color: #3366ff;
  color: #FFFFFF;
  font-size: 12pt;
  width: 200px;
  max-width: 100%;
}
hr {
  height: 1px;
  width: 100%;
  background-color: #3366ff;
  border: none;
  outline: none;
  display: block;
}
.red {
  font-size: 7pt;
  color: #F00;
}