@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;700&display=swap");
html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
body {
  background-color: #232323;
  color: #333;
  margin: 0;
  padding: 16px 8px;
  box-sizing: border-box;
  font-family: "Red Hat Display", sans-serif;
}
a {
  color: rgb(0, 100, 200);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:visited {
  color: rgb(0, 80, 160);
}
label {
  display: block;
}
input,
button,
select,
textarea {
  width: 350px;
  height: 55px;
  font-family: inherit;
  font-size: 24px;
  font-weight: 600;
  -webkit-padding: 0.4em 0;
  padding: 0px 10px;
  box-sizing: border-box;
  border: none;
  border-radius: 15px;
  background-color: #303030;
  color: #f8f8f8;
  transition: all 500ms ease-in-out;
}
input::placeholder,
input {
  opacity: 0.75;
}
input:disabled {
  color: #ccc;
}
select {
  /* replace the old arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* text styles */
  opacity: 0.75;
}
.select-box {
  position: relative;
  height: 100%;
  border-radius: 10px;
}
.select-box::after {
  content: "▾";
  font-size: 32px;
  border-radius: 0 10px 10px 0;
  color: #f8f8f8;
  height: calc(100% - 10px);
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 15px;
  pointer-events: none;
  background: #363636;
  transition: all 500ms ease-in-out;
}
button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
  transition: all 500ms ease-in-out;
}
button:disabled {
  color: #999;
}
button:not(:disabled):active {
  background-color: #ddd;
}
button:focus {
  border-color: #666;
}

select:hover,
input:focus,
input:hover {
  box-shadow: 0px 0px 20px rgba(255, 121, 0, 0.5);
}
