@import url('https://fonts.googleapis.com/css?family=Nunito');

html {
  font-family: "Nunito", sans-serif;
  min-height: 100vh;
}

body {
  background-image: var(--background-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
}

img {
  padding: 1.5rem;
  width: 100%;
  max-width: 300px;
}

.hidden {
  display: none;
}

.border {
  border: 1.2rem solid black;
}

.select {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.7rem;
  width: 18rem;
  height: 3rem;
  background-color: white;
  cursor: pointer;
}

.select .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--company-color);
  width: 3rem;
  height: 100%;
}

/* Was a Font Awesome <i class="fa fa-angle-down">, sized by font-size. The icon
   is now an inline SVG, so the box is sized directly and the stroke follows
   `color` through currentColor. */
.select .arrow svg {
  color: black;
  width: 1.8rem;
  height: 1.8rem;
}

#dropdown {
  font-size: 1rem;
  width: 18.7rem;
  position: absolute;
  box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.1);
}

#dropdown .option {
  color: black;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 0.7rem;
  cursor: pointer;
  background-color: white;
  height: 3rem;
  text-decoration: none;
  border-bottom: 0.1rem solid #efefef;
}

#dropdown .option:hover {
  background-color: #efefef;
}

#dropdown .option:active {
  color: var(--company-color);
}
