.CarDescription {
  font-size: 20px;
  font-family: Courier;
  margin-right: 15px;
  color: white;
}

.MainImage {
  max-width: 400px; 
  max-height: 600px;
  display: block;
  margin-left: auto; 
  margin-right: auto;
  width: 40%;
  margin-top: 10px;
}

span {
  font-size: 20px;
  font-family: Courier;
  margin-bottom: 175px;
  display: flex;
  flex-direction: column;
  float: right;
  text-align: center;
  width: 35%;
  color: white;
}

.ResetButtons {
  float: top;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 10px;
}

Button {
  animation:bouncy 5s infinite linear;
  position:relative;
  display:inline-block;
  padding:0.7em 1.4em;
  margin:0 0.3em 0.3em 0;
  border-radius:0.15em;
  box-sizing: border-box;
  text-decoration:none;
  font-family:'Roboto',sans-serif;
  text-transform:uppercase;
  font-weight:400;
  color:#FFFFFF;
  background-color:#146818;
  box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
  text-align:center;
  position:relative;
  margin-bottom: 20px;
}

@keyframes bouncy {
  0%{top:0em}
  40%{top:0em}
  43%{top:-0.9em}
  46%{top:0em}
  48%{top:-0.4em}
  50%{top:0em}
  100%{top:0em;}
}

Button:active {
  top:0.1em;
}
 
@media all and (max-width:30em) {
Button {
  display:block;
    margin:0.4em auto;
  }
}

html {
  background-image: url('MainBackground.jpg');
  background-size: cover;
}