body {
  margin: 0;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
}

p {
    display: block;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

a {
  color: white;
}

.viewport {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.text-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 80%;
  margin: 1vh;
  background-color: #d9dfe1;
  border-radius: 1vh;
  border: 0.25vh solid #808080;
}

.image-container {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.text-container {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.title {
  font-size: 6vh;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  padding: 1vh;
}

.subtitle {
  font-size: 4vh;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  padding: 0 1vh 1vh 1vh;
}

.footer {
  font-size: 1vh;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  padding: 0 1vh 1vh 1vh;
  color: white;
  position: absolute;
  bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .text-box {
    flex-direction: column;
  }

  .image-container {
    padding: 10px;
  }

  .text-container {
    padding: 10px;
  }
}
