* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #9b59b6;
  font-family: "Lato", sans-serif;
}

h1,
p {
  padding: 0;
  margin: 0;
}

main {
  max-width: 100%;
  margin: 0 auto;
}

.modal {
  background-color: #ffffff;
  max-width: 290px;
  margin: 50px auto 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 12px 0 #3c3c3c;
          box-shadow: 0 2px 12px 0 #3c3c3c;
}

@media (min-width: 768px) {
  .modal {
    max-width: 400px;
    margin-top: 120px;
  }
}

@media (min-width: 1024px) {
  .modal {
    max-width: 600px;
    margin-top: 150px;
  }
}

.modal__header {
  border-bottom: 1px solid #2ecc71;
  padding: 5px 10px;
}

.modal__header p {
  font-family: "Holtwood One SC", serif;
}

.modal__body {
  padding: 30px 10px;
}

.modal__body h1 {
  font-size: 20px;
  margin-bottom: 20px;
}

.modal__footer {
  border-top: 1px solid #e74c3c;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) {
  .modal__footer {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.modal__footer a {
  text-decoration: none;
  border-radius: 5px;
  color: #ffffff;
  display: block;
  padding: 10px;
  min-width: 110px;
  text-align: center;
}

.modal__footer a.success {
  background-color: #2ecc71;
  margin-right: 10px;
}

.modal__footer a.error {
  background-color: #e74c3c;
}
/*# sourceMappingURL=sass.css.map */