@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap");
@import url('https://fonts.googleapis.com/css?family=Sen&display=swap');
body {
    background-image: url('images/space.jpg');
}
#form {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 50px 0;
    /* background-image: linear-gradient(-90deg, floralwhite, azure); */
    text-align: center;
    margin-top: -80px;
}

.image {
    width: 240px;
    height: 240px;
}

.dropdown{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 25px;
    animation: bounce;
}

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap");

button {
  position: relative;
  padding: 0.75em 2em;
  font: 1rem "Orbitron";
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 5px 20px rgba(192, 36, 0, 0.4), 0 2px 2px rgba(192, 36, 0, 0.4);
  background-image: radial-gradient(100% 75% at 50% 100%, #fed262 0%, #c40900 100%);
  border: none;
  border-radius: 80px;
}
button:before {
  position: absolute;
  z-index: -2;
  top: -2rem;
  left: -4rem;
  right: -4rem;
  bottom: -2rem;
  background: linear-gradient(#333, #151515);
  border-radius: 100px;
  box-shadow: 0 2px 10px white, inset 0 2px 0 #444;
}
button:after {
  position: absolute;
  z-index: -1;
  background: white;
  box-shadow: 0 1px 0 #444;
  height: 10px;
  left: -4rem;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.4), inset 0 0 10px #850600, inset 0 3px 15px 0 #ae2000, inset 0 40px 0 0 rgba(254, 210, 98, 0.3), inset 0 20px 20px 0 rgba(248, 191, 69, 0.75), 0 0 0 8px white, 0 9px 0 0 #444;
}
button:hover {
  cursor: pointer;
  background-image: radial-gradient(100% 75% at 50% 100%, #f7b940 0%, #a20700 100%);
  animation: bounce;
}
button:focus, button:active {
  outline: none;
  color: #f9e3bf;
  background-image: radial-gradient(100% 75% at 50% 100%, #f58725 0%, #850600 100%);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.4), inset 0 0 10px #850600, inset 0 3px 15px 0 #ae2000, inset 0 40px 0 0 rgba(254, 210, 98, 0.3), inset 0 20px 20px 0 rgba(248, 191, 69, 0.75), 0 0 0 8px white, 0 9px 0 0 #444;
}

.submit {
    margin-top: 35px;
}

.center {
    font-size: large;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    letter-spacing: 2px;
}

select {
    width: 140px;
    height: 35px;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 2px 2px 8px #999;
    background: #eee;
    border: none;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
  }

input[type=radio] {
    width: 20px;
    height: 20px;
}

input[name="vehicle1"] {
	accent-color: red;
}

input[name="vehicle2"] {
	accent-color: red;
}

input[name="vehicle3"] {
	accent-color: red;
}

input[name="vehicle4"] {
	accent-color: red;
}

.heading h1{
    display: inline;
}

.heading {
    color: white;
    font: 1rem "Orbitron";
    letter-spacing: 2px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.heading img {
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-top: -28px;
    margin-left: 10px;
}

.distance {
    color: white;
    font: 1rem "Orbitron";
    margin-top: 10px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

#total_dist {
    font-size: 150%;
    background-color: red;
}
