.icon {
  width: 50px;
  margin-left: 15px;
  margin-right: 15px;
}
ul {
  display: flex;
  justify-content: center;
}
img {
  margin: 0 auto;
  display: block;
  height: auto;
  width: 71%;

  margin-left: auto;
  margin-right: auto;
}
.fex-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: space-around;
}
ul {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 30px;
}
li {
  display: inline;
  list-style: none;
}

h1 {
  margin-top: 10px;
  text-align: center;
  margin-bottom: 20px;
}

h3 {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}
iframe {
  margin: 0 auto;
  width: 100%;
}

form {
  text-align: center;
  margin-bottom: 50px;
}

input{
  
  display: inline-block;
  padding: 0 16px 0 12px;
  width: 220px;
  line-height: 30px;
  height: 32px;
  border: 1px solid #dddbda;
  border-radius: 4px;
  background-color: #fff;
  color: rgb(8, 7, 7);
  transition: border .1s linear,background-color .1s linear;
  

}
input:focus{
  border-color: #1b96ff;
  color: var(--sds-c-input-text-color-focus);
  box-shadow: rgb(1, 118, 211) 0px 0px 3px 0px;
}

button{
  
  display: inline-block;
  outline: none;
  cursor: pointer;
  padding: 0 16px;
  background-color: #d9534f;
  border-radius: 0.25rem;
  border: 1px solid #d9534f;
  color: #fff;
  font-size: 13px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
}

button:hover {
  background-color: #c4514d;  
  border-color: #c4514d;
}