h2 {
  font-weight: bold;
  font-size: 3.5rem;
}

h3 {
    font-size: 3rem;
}

h2 + .button {
    margin-top: 2rem;
    margin-left: 4rem;
}

b {
    margin-right: 0.2rem;
}

.liflex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: bold;
}

input,
textarea,
select {
    padding: 0.5rem;
    border: black 2px solid;
    border-radius: 0.25rem;
    margin-bottom: 1.75rem;
    width: 100%;
}

input[type=submit] {
  border: none;
}

img {
  margin-bottom: 1rem;
}

main .flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.button {
  font-size: 1.2rem;
  color: white;
  height: 50%;
  padding: 0.5rem;
  margin-top: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.red {
  background-color: #f44336;
}

.green {
  background-color: #4CAF50;
}

.red:hover {
  background-color: #E62227;
}

.green:hover {
  background-color: #3e8e41;
}

.inline {
  display: inline;
}

