.notification {
  padding: 10px;
  margin-bottom: 20px;
  border: 0 none;
  border-radius: 5px;
  clear: both;
  font-size: 13px;
  line-height: 16px;
  width: 100%;
  color: #ffffff;
  padding-left: 60px;
  position: relative;
  min-height: 60px;
  text-align: center;
  z-index: 2;
}

.notification::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 18px;
}
.alert.info, .messages.info, .notification.info {
  background-color: #4fa4f3;
}
.alert.info::before, .messages.info::before, .notification.info::before {
  content: "i";
}
.alert.alert, .messages.alert, .notification.alert {
  background-color: #f0d033;
}
.alert.alert::before, .messages.alert::before, .notification.alert::before {
  content: "!";
}
.alert.error, .messages.error, .notification.error {
  background-color: #FF2F6C;
}
.alert.error::before, .messages.error::before, .notification.error::before {
  content: "!";
}
.alert.success, .messages.success, .notification.success {
  background-color: #4ad016;
}

.static-page {
    align-items: flex-start; 
    max-width: 1240px; 
    margin: 0 auto;
}

.static-page h2 {
    margin-bottom: 10px;
    margin-top: 20px;
}
.static-page h3 {
    margin-bottom: 5px;
    margin-top: 10px;
}