* {
  box-sizing: border-box;
}

.tagesschrift-regular {
  font-family: "Tagesschrift", system-ui;
  font-weight: 400;
  font-style: normal;
}

.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: PT Serif;
  font-size: 17px;
  color: white;
  padding-left: 260px;
  padding-right: 260px;
  padding-top: 5px;
  padding-bottom: 20px;
  background: black;
  background-image: url(https://i.postimg.cc/8ky0xCbH/stars.gif);
  background-attachment: fixed;
}

a {
   color: #32abff;
   text-decoration: none;
}

a:hover {
	color: #f3ff00;
	text-decoration: none;
}

a:active {
  color: white;
}

h2 {
	font-family: Tagesschrift;
	font-weight: normal;
}

img {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.header img {
  max-width: 100%;
}

.gallery {
	margin-top: 20px;
	margin-bottom: 10px;
}

.gallery img {
  border: 1px solid  #484a4d; /* Gray border */
  padding: 5px; /* Some padding */
  max-width: 150px; /* Set a small width */
  max-height: 125px;
  display: inline;
}

.gallery img:hover {
  border: 1px solid #32abff;
}

summary {
	padding: 3px;
	margin: 10px;
	display: inline;
	border-bottom: 5px double #32abff;
}
summary:hover {
	border-bottom: 5px double #f3ff00;
}
summary:active {
	border-bottom: 5px double white;
}

.stamps {
	margin-top: 10px;
	margin-bottom: 10px;
}

.stamps img {
  display: inline;
  padding: 5px;
}

/* Header/Blog Title */
.header {
  padding: 0px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
  background-color: rgba(114, 40, 171, 0);
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 70%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 30%;
  background-color: rgba(114, 40, 171, 0);
  padding-left: 20px;
}

.main {   
  float: left;
  width: 100%;
}

/* Add a card effect for articles */
.card {
  background-color: #1f2024;
  padding: 20px;
  margin-top: 20px;
  border-style: double;
  border-width: 6px;
  border-color: #484a4d;
}

.update {
  height: 100px;
  overflow: auto;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #1f2024;
  margin-top: 20px;
  border-style: double;
  border-width: 6px;
  border-color: #484a4d;
}

@media screen and (max-width: 1200px) {
  body {
	padding-left: 50px;
    padding-right: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
  body {
	padding-left: 20px;
    padding-right: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
    img {
  max-width: 100%;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 450px) {
  body {
	padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}