/*

Ancestor Face Match - Public Beta 0.2.005 - December 2020
Author Scott Genzer
All content is free to be used and distributed by anyone who wishes under the GNU GPLv3 License.
Attribution kindly requested.

*/

* {
  box-sizing: border-box;
  font-family: "Open Sans", Helvetica, Arial;
}

body {
  background-color: white;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 30px;
}

h1.header {
  color: white;
}

p {
  font-family: 'Open Sans';
  font-size: 20px;
}

/* Style the header */

.header {
  padding: 10px;
  text-align: center;
  background-color: #56089e;
  color: white;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 15px;
}

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

.button {
  text-align: center;
  padding: 5px;
}

.collection {
  text-align: center;
  padding: 5px;
}

.resultsTable {
  border-collapse: collapse;
  width: 75%;
  margin-left: 20px;
  text-align: center;
}

.resultsTable th, td {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 5px;
  border: 1px solid black;\
}

.resultsTable th {
  background-color: #56089e;
  color: white;
}

.resultsTable img {
  max-height: 150px;
}

.footerList {
  line-height: 1.8;
}

footer {
  padding: 10px;
}

#loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

