/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,600;1,300&display=swap');
body {
  font-family: 'Open Sans', sans-serif;
  background-color: white;
  padding: 1cm;
  color: black;
  margin: 0;
}
#content img {
  width: 350px;
	max-width: 100%;
  transition: transform 0.2s ease-out 0s;
}
#content img:hover {
  transform: scale(1.23, 3.23);
}
#content section > span {
  border: 1px solid white;
  outline: 1px solid black;
  width: 350px;
	max-width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  line-height: 0;
}
h1 {
  font-size: 0.6cm;
  line-height: 0.8cm;
  margin-bottom: 0.25cm;
}
p, ul {
  font-size: 0.4cm;
  line-height: 0.6cm;
}
p {
  margin-bottom: 0.25cm;
}
p + ul {
  margin-top: -0.25cm;
}
ul {
  margin-bottom: 0.5cm;
}
#content section > .date {
  display: inline-block;
  background-color: grey;
  color: white;
  padding: 1px 3px 1px 1cm;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 0;
  margin-left: -1cm;
}
#content section p a {
  text-decoration: none;
  color: rgb(0, 96, 192);
}
#content section p a:hover {
  text-decoration: underline;
}
#nfo {
	position:absolute;
	bottom:0;
	right:0;
	padding:10px;
	font-size:14px;
	line-height:14px;
	opacity: 0.5;
}