﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

img {
  max-width: 100%;
}

#wrapper {
  position: relative;
  max-width: 560px;
  margin: 12px auto;
  border: 1px solid #000;
  padding: 16px;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  color: #200E00;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

header {
  position: absolute;
  top: 16px;
  left: 16px;
}


article p {
  padding-left: 86px;
  text-align: justify;
}



h1 {
  margin: 24px 0;
  padding: 0;
  font-size: 19px;
  line-height: 1.3;
  text-align: center;
}

h2 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

a {
  color: #200E00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media all and (max-width:560px) {
  #wrapper {
    padding: 16px;
    border: none;
  }

  header {
    position: static;
    text-align: center;
    margin-bottom: 16px;
  }


  article p {
    padding-left: 0;
    text-align: center;
  }

  footer p {
    text-align: center;
  }

  br {
    display: none;
  }

  footer br {
    display: inline;
  }
}