@font-face {
  font-family: lycheeSoda; /* set name */
  src: url(lychee_soda.ttf); /* url of the font */
  font-weight: 100;
}

body {
  margin: 0;
  height: 100vh;
  
  background-color: #777;
  background-image: url("./repeatingbg.png");
  background-size: 32px;
  background-blend-mode: multiply;
}

.container {
  font-family: lycheeSoda;
  line-height: 0.8;
  
  font-smooth: none;
  font-synthesis: none;
  -webkit-font-smoothing: none;
}

header {
  color: white;
  text-align: center;
  font-size: 80px;
  padding-top: 32px;
  padding-bottom: 64px;
  text-shadow: 4px 4px #00000080;
}

.blog {
  max-width: 1200px; /* Adjust this value to set the maximum width */
  margin: 0 auto; /* Center the container */
  padding: 40px; /* Optional padding */
  box-sizing: border-box; /* Include padding in the total width */
  height: 100%;
  
  background-color: white;
}

h1 {
  font-size: 56px;
  margin: 0;
}

p {
  font-size: 24px;
  margin: 0;
  padding: 5px;
}

#level_parent_div {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
}

.level {
	display: inline-block;
	background-color: white;
	padding: 20px;
}

.preview_url {
	width: 100%;
	margin: 10px;
  border: 2px black solid;
}

.author_icon {
  right: 0;
	float: right;
  margin: 10px;
  border: 2px black solid;
}

img {
  image-rendering: pixelated;
}