@font-face {
    font-family: 'egg';
    src: url('EGG.otf');
}

body {
  background-color: white;
  color: black;
  font-family: 'egg';
  text-align: center;
  align-items: center;
}
a {
  color: #18f;
}
a:visited {
  color: #81f;
}
.tool {
  background: #ddd;
  border: none;
  border-radius: 4px;
  cursor:pointer;
  transition-duration: 0.2s;
  padding: 10px;
  font-family: 'egg';
}
.tool:hover{ background: #ccc; }
.home {
  font-size: 160%;
  position: fixed;
  left: 5px;
  top: 5px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition-duration: 0.3s;
  color: white;
}
.home:hover { font-size: 170%; }
.icon { width: 15px; transform: translateY(6px); }
input[type=number] {
  border: none;
  background: #ddd;
  border-radius: 4px;
  height: 20px;
  margin-bottom: 10px;
}
.infoContainer {
  display: flex;
  justify-content: center;
  position: absolute;
  margin-left: -8px; margin-right: -8px;
  width: 100vw;
}
.info {
  display: flex;
  border: 8px solid #ddd;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  width: 50%;
  height: 180px;
  margin: 30px;
}



















/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: 'egg';
  user-select: none;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  border-radius: 4px;
  background-color: #ddd;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 38px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 31px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #000000;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #ddd;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}









