html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, ul, li, ol, button, a {
  font-family: 'Helvetica', 'Arial', sans-serif;
  color: #000;
}

.main-container {
  width: 100%;
  height: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.logo {
  width: 100%;
  height: auto;
  max-width: 5rem;
  margin-bottom: 2rem;
}

.row {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  padding: 3rem;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: justify;
  text-align-last: left;
}

.column-2 {
  display: flex;
  flex-direction: column;
  width: 55%;
  padding: 3rem;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: start;
}

.divider {
  border-right: solid 1px #ccc;
}

.download-button {
  padding: 0.5rem 1rem;
  background-color: #1977DA;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.1rem;
  border-radius: 15px;
}
.download-button:hover {
  transition: 0.3s;
  transform: scale(1.05);
}

.small {
    font-size: 0.8rem;
    text-align-last: center;
}
.my-5 {
    margin: 0.7rem 0 2rem 0;
}

.span-as-pre {
    white-space: pre;
    font-family: monospace !important;
    font-weight: bold;
}

.brevetto p {
    margin: 0.5rem;
}
.brevetto {
    margin-bottom: 1rem;
    width: 100%;
}
.milestone-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

@media only screen and (max-width: 800px) {
  .row {
    flex-direction: column;
  }
  .divider {
    border-right: none;
    border-bottom: solid 1px #ccc;
  }
  .main-container {
    padding: 3rem 0;
  }
  .column {
    padding: 1rem, 2rem
  }
  .column-2 {
      width: 100%;
      padding: 1rem, 2rem;
      border-top: solid 1px #ccc;
  }
}
@media only screen and (min-width: 801px) {
  .row {
    flex-direction: row;
  }
  .column-2 {
      border: none;
  }
}
