/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  image-rendering: pixelated;
  overflow: hidden; 
}

/* retro scrollbar */
.webpage::-webkit-scrollbar {
  width: 20px;
}

.webpage::-webkit-scrollbar-track {
  background: #dcdcdc;
  border: 3px solid black;
}

.webpage::-webkit-scrollbar-thumb {
  background: #999;
  border: 3px solid black;
  border-radius: 0;
}

/* Firefox */
* {
  scrollbar-width: thick;
  scrollbar-color: #999 #dcdcdc;
}

/* MAIN CONTAINER */
.webpage {
  height: 100%;
  overflow-y: scroll; 
  background: #dddddd;
}

.window.fullscreen .iframe-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.window.fullscreen iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* FLEX LAYOUT */
.content {
  display: flex;
  height: 100%;
  gap: 20px;
}

.intro
{
  padding: 20px;
  font-size: 15px;
}

.thumbnail-exp
{
  margin-top: 10px;
  margin-right: 10px;
  text-align: right;
  width: 120px;
  color: rgb(108, 108, 108);
  float: right;
}

.header
{
  position: relative;
  padding-left: 9px;
  background-color: rgb(198, 228, 238);
}

.issue
{
  position: absolute;
  top: 0px;
  right: 18px;
  font-size: 60px;
  color: rgb(195, 58, 58);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.main
{
  padding-top: 5px;
}

.intro
{
  font-size: 25px;
}

.title
{
  font-size: 60px;
}

.date
{
  padding-top: 8px;
  font-size: 25px;
  font-style: italic;
  color: rgb(108, 108, 108);
}

.l-dotted
{
  border-top: 3px dashed black;
  text-decoration: none;
}

.textbold
{
  font-size: 30px;
}

.score{
  padding-right: 50px;
  font-size: 30px;
}

.review-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.poster
{
  border: #000 5px solid;
  outline: 4px;
  flex-shrink: 0;
  width: 300px;
  margin-left: 15px;
}

.review {
  max-width: 750px;
  margin: 0 auto;  
  font-size: 25px;
  line-height: 50px;
}

.review-text {
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
}

.img-left {
  float: left;
  width: 240px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.img-right {
  float: right;
  width: 240px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.padding
{
  padding-top: 15px;
}

.media-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.media-row img {
  width: 240px;
}

.baseimage
{
  padding-left: 10px;
  padding-right: 10px;
}

.sub-title {
  flex: 1;
  text-align: center;
  font-size: 40px;
}

.boy-update {
  width: 1000px;
  text-align: right;
  margin-left: auto;
  
}

.boy-title
{
  font-size: 60px;
}

.img-boy
{
  float: right;
  width:400px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 20px;
}

.signoff
{
  font-size: 32px;
  margin-left: 105px;
  margin-top: -14px;
}

.return-button {
  position: fixed;
  bottom: 10px;
  left: 10px;
}

.return-button img {
  width: 80px; /* control button size */
}