/*
 Fonts used:
 font-family: 'Muli', sans-serif;
font-family: 'Raleway', sans-serif;
 */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #2d3e50;
  color: white;
  font-family: 'Muli', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100vw;
  height: auto;
  overflow-x: hidden;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: auto;
}

h1 {
  margin: 10px 10px 40px 10px;
}

#err,
#gen {
  display: inline;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.title,
.header {
  color: #f1c40f;
}

.header {
  font-size: x-large;
}

p,
.article {
  display: block;
  width: 85vw;
  max-width: 860px;
  height: auto;
  margin: 10px 0;
  padding: 5px;
  font-family: 'Muli', sans-serif;
  text-align: left;
}

button {
  padding: 8px 20px;
  outline: none;
  border: 2px solid white;
  color: white;
  border-radius: 4px;
  background: transparent;
  font-size: large;
  cursor: pointer;
}

a {
  color: yellow;
}

.info {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 10px 0;
}

@media (min-width: 768px) {
  .info {
    width: 40vw;
  }
}

.btn {
  width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 40px 0;
}

@media (min-width: 768px) {
  .btn {
    width: 35vw;
  }
}

img {
  width: 100%;
  height: 100%;
  max-width: 230px;
  max-height: 230px;
}

@media (min-width: 768px) {
  img {
    float: left;
    margin-right: 30px;
  }
}
/*# sourceMappingURL=main.min.css.map */