@font-face {
  font-family: Poppins;
  src: url("Poppins-Regular.otf") format("opentype");
}

* {
  font-family: Poppins;
}

header {
  margin: 40px;
}

h1 {
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
  color: white;
  margin-top: 5px;
}

body {
  padding: 10px;
  background-color: rgb(135 106 170);
}

section {
  padding: 10px;
  background: #fafafa;
  border-radius: 20px;
  margin-bottom: 20px;
}

.output {
  background-color: #eee;
  padding: 10px;
  border-radius: 15px;
  overflow: auto;
}

.output,
.output>* {
  font-family: 'Courier New', Courier, monospace;
  font-size: .9em;
}

#logo {
  height: 100px;
}

.btn {
  min-width: 100px;
  display: flex;
  align-content: stretch;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}

a {
  color: white;
}

a:hover {
  color: #eee;
}

.icon-zone {
  position: absolute;
  top: 15px;
  right: 15px;
}

@media (max-width: 576px) {
  header {
    margin: 20px;
  }

  h1 {
    font-size: 1.5em;
  }

  body {
    padding: 5px;
  }

  section {
    margin-bottom: 10px;
  }

  #logo {
    height: 80px;
  }

}