@import url("https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100;0,400;0,700;1,100;1,400&family=Yomogi&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  background-color: white;
}

.container {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.05fr) minmax(4rem, 2.9fr) minmax(0, 0.05fr);
  gap: 1rem 1rem;
  grid-template-areas:
    ". header ."
    ". article ."
    ". petition ."
    ". participate ."
    ". info ."
    "news news news"
    ". legal .";
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
}

.header,
.article,
.petition,
.participate,
.info,
.news,
.legal {
  align-self: center;
  height: auto;
  padding: 1rem;
}

.header,
.article,
.petition,
.participate,
.info,
.legal {
  max-width: 50rem;
}

.header {
  grid-area: header;
  padding-top: 2rem;
}

.article {
  grid-area: article;
}

.petition {
  grid-area: petition;
}

.participate {
  grid-area: participate;
}

.info {
  grid-area: info;
}

.news {
  grid-area: news;
  align-self: stretch;
  width: 100%;
  background-color: #eee;
  padding: 0;
  margin: 0 auto;
}

.favico {
  width: 20px;
  height: 20px;
  margin-right: 0.4em;
  vertical-align: text-bottom;
}

.legal {
  grid-area: legal;
}

.header img {
  max-width: 100%;
  max-height: 60%;
  height: auto;
}

.article p {
  margin-top: 0;
}

h1,
h2 {
  text-align: center;
  font-size: 1.4rem;
}

h1, h2 {
  margin-top: 2.4em;
  margin-bottom: 2em;
}

.news h1,
.news h2 {
  /*padding-left: 1.4rem;*/
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.article p,
.article li,
.script,
h1,
h2,
h3,
h4 {
  font-family: "Yomogi", "script", sans-serif;
}

p,
.article,
.info,
li,
.script {
  font-size: 1.2rem;
  text-align: left;
  list-style-type: disclosure-closed;
  overflow-wrap: break-word;
}

.info > ul > li {
  font-family: "Asap", "Arial", sans-serif;
  font-size: 1.2rem;
  line-height: 120%;
}

.participate > ul > li {
  font-family: "Asap", "Arial", sans-serif;
}
.participate > ul > li > p {
  font-size: 0.9rem;
  line-height: 120%;
}

.news > ul > li,
.legal,
.sans {
  font-family: "Asap", "Arial", sans-serif;
  font-size: 1rem;
}

small, .small {
  font-weight: 100;
  font-style: italic;
  font-size: 0.7rem;
}

.news ul {
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  width: 85%;
}

.info li,
.news li {
  padding-bottom: 1rem;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

li {
  margin-bottom: 0.8rem;
}

.marked {
  background-color: yellow;
}

#sign {
  padding: 1.4rem;
  background-color: blue;
  border-radius: 0.45rem;
  color: white;
  font-size: 140%;
  border: 0;
  -webkit-box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.5);
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

#sign:hover {
  background-color: darkblue;
  cursor: pointer;
}

input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

a,
a:link {
  color: royalblue;
  text-decoration: underline;
  -webkit-text-decoration-color: dodgerblue;
  text-decoration-color: dodgerblue;
}

a:hover,
a:active {
  color: royalblue;
}

a:visited {
  color: cornflowerblue;
}

.mini {
  font: 0.6rem "Asap", Arial, sans-serif;
  font-style: italic;
  color: grey;
}
