@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;500;600;700&display=swap");

/* Result Tabs */
p { font-family: Arial, sans-serif;}
body {
    font-family: 'Andalé Mono', monospace;
}

label { display: inline-block; width: 210px; text-align: right; font-size: 12px; margin-inline: 5px }

.tab {
display: none;
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
border-radius: 4px;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}


/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  position: relative;
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 4px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}
/* End Result Tabs */

.starship {
  position: fixed;
  left: 100px;
  bottom: 100px;
  width: 100px;
  animation-name: fly;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes fly {
  0% {left:100px; bottom: 100px;}
  25% {left:105; bottom: 100px;}
  50% {left:105; bottom: 100px;}
  75% {left:105; bottom: 100px;}
  100% {left:100; bottom: 100px;}
}

.exhaust {
  position: realtive;
  left: 100px;
  top: 10px;
  width: 30px; 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  height: 80vh;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  /* background-color: #fcfcfc; */
}

.card {
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  width: 600px;
  height: 260px;
  background-color: #ffffff;
  padding: 10px 30px 40px;
}

.results {
  width: 800px;
  height: 860px;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #ffffff;
}

.card h3 {
  font-size: 22px;
  font-weight: 400;
}

.drop_box {
  margin: 10px 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 180px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23333' stroke-width='1' stroke-dasharray='14%2c 14' stroke-dashoffset='17' stroke-linecap='square'/%3e%3c/svg%3e");
border-radius: 10px;
  /** border: 2px dashed #a3a3a3; 
  border-radius: 5px; */
}

.drop_box h4 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  color: #2e2e2e;
}

.drop_box p {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  padding: 5px;
  color: #a3a3a3;
}

.btn {
  text-decoration: none;
  background-color: #20B2AA;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  outline: none;
  transition: 0.3s;
  border-radius: 10px;
}

.btn:hover{
  text-decoration: none;
  background-color: #ffffff;
  color: #20B2AA;
  padding: 10px 20px;
  border: none;
  outline: 1px solid #20B2AA;
}

input[type=text] {
  border: none;        /* Remove default borders */
  background-color: whitesmoke;
  padding: 4px 8px;
  border-radius: 8px; /* Sadly outline does not round! therefore...*/
}

input[type=text]:focus{
  outline: none;      /* Remove default outline and use border or box-shadow */
  box-shadow: 0 0 0 2px #20B2AA; /* Full freedom. (works also with border-radius) */
}

/* Create three equal columns that float next to each other */
.column {
  float: left;
  width: 33.33%;
  position: relative;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

.footer {
    pointer-events: none;
    bottom: 0%;
    text-align: center;
    position: fixed;
    width: 100%;
    font-size: 10px;
}

.left {
    width:33%;
    float:left;
}


.center {
    margin: auto;
    margin-top: 10px;
    margin-bottom: 5px;
    width: 100px;
}

.right {
    width:33%;
    float:right;
}

.belowbox {
  position: relative;
  bottom: -15%;
  width: 100%;
  text-align: center;
  font-size: 11px;
}

p { font-family: Arial, sans-serif;}
body {
    font-family: 'Andalé Mono', monospace;
}

/* Style the tab */
.tab {
display: none;
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}

