@import url("https://fonts.googleapis.com/css?family=Outfit|Work+Sans|Merriweather+Sans");
/* colors */
/* fonts */
body {
  background-color: ghostwhite;
  font-family: "Outfit";
  color: black;
  text-align: center;
}

@media all and (max-width: 500px) {
  .container {
    width: 90%;
  }
  .btns {
    flex-direction: column;
  }
}
@media all and (min-width: 500px) {
  .container {
    width: 500px;
  }
}
.container {
  margin: auto;
}

.element-metall, .element-nichtmetall {
  border: solid ghostwhite 2px;
  box-shadow: 2px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.element-metall {
  background-color: #b3e7fb;
}

.element-nichtmetall {
  background-color: #fffcb3;
}

.disclaimer {
  background-color: #f2a600;
  font-size: 12px;
  margin-top: 20px;
  padding: 10px;
  align-items: center;
  color: ghostwhite;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.19);
  display: flex;
  align-items: center;
  text-align: left;
}

.icon {
  font-size: 40px;
  padding: 10px;
}

.disclaimer > p {
  min-width: 200px;
}

.btns {
  display: flex;
  justify-content: space-evenly;
}

/* CSS */
button {
  border: solid 2px black;
  border-radius: 5px;
  padding: 10px;
  width: 200px;
  background-color: ghostwhite;
  margin: 10px auto;
}

button:hover {
  background-color: black;
  color: ghostwhite;
}/*# sourceMappingURL=style.css.map */