* {
  padding: 0%;
  margin: 0%;
  background-color: #f1f1f1;
  box-sizing: border-box;
  color: #090b10;
}
body {
  color: #373717;
  max-width: 1200px;
  margin: 20px auto;
}
section {
  padding: 20px;
}
h1,
h2 {
    color: #444;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #c1c1c1;
}
h1 {
  font-size: 20px;
  padding-left: 20px;
}
h2 {
  font-size: 18px;
}
p {
  font-size: 14px;
  margin: 20px 0;
}
header {
  font-size: 18px;
  font-weight: 500;
}

.action-button {
  color: #fff;
  width: 300px;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 3px;
  margin-right: 15px;
  text-transform: uppercase;
  transition: all ease 300ms;
}

.action-button-danger {
  background: red;
  border: 1px solid red;
}

.action-button-safe {
  background-color: green;
  border: 1px solid green;
}

button:hover {
  filter: brightness(85%);
}

.outerDiv {
    margin: 30px 0;
  padding: 20px;
  background-color: #dfdfdf;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  display: flex;
  min-height: 14px;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.innerDiv {
  padding: 15px;
  flex-basis: 60px;
  margin: 20px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: #dfdfdf;
  background-color: #dfdfdf;
  transition: background-color ease 2s, color ease 2s;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.innerDiv:hover {
    filter: contrast(110%);
}

.innerDiv_theme {
  color: #373717;
  background-color: #f9cc9d;
}

.innerDiv_new {
  color: #373717;
  background-color: green;
}

footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
