@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

a {
  color: black;
}

body {
  display: flex;
  justify-content: center;

  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}

.wrapper {
  max-width: 800px;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.graybox {
  border: 1px solid lightgray;
  border-radius: 5px;
  background-color: rgb(246, 245, 245);
  padding: 20px;
  width: 100%;
  margin-bottom: 10px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

p {
  text-align: justify;
  margin-bottom: 10px;
}

iframe {
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
}

img {
  max-width: 100%;
}

ul {
  list-style-position: inside;
}

.galery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 10px;
}

.galery img {
  height: 200px;
  border-radius: 5px;
}

.galery video {
  height: 200px;
  border-radius: 5px;
}

.tools {
  font-style: italic;
  color: gray;
  text-align: center;
}

.tools span:not(:first-child)::before {
  content: " • ";
}

.emoji {
  height: 16px;
  width: auto;
  margin: 0;
  display: inline;
  vertical-align: middle;
}
