/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Fuckmerunning;
}

iframe {
  object-fit:fill;
  width:100%;
  height:232px;
}


/* FLEXBOX */

.page { 
  /* important (the container needs to be a flex container) */
  display: flex; 
  
  /* not that important unless they are not defined */
  width: 100%;
  height: 900px;
  
  /* not that important (styling) */
  gap: 8px;
}

.flex-column {
  /* important */
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  
  /* not that important (styling) */
  gap: 8px;
}

.flex-pair {
  /* important */
  display: flex;
  flex-direction: column;
  
  /* not that important (styling) */
  padding: 0px;
  gap: 0px;
}

.flex-row {
  
  /* important */
  display: flex;
  flex-grow: 1;
}

/* LAYOUT */

.title {
  display: flex;
  color: #fff;
  background: #8850E9;
  letter-spacing: 3px;
  text-align: left;
  padding: 2px 0 0 8px;
  margin-bottom: 0px;
}

.window {
  display: flex;
  background-color: #2D2344;
  padding: 20px;
  overflow-wrap: break-word;
  border: 3px solid #8850E9;
}

.sidebar {
  background-color: #2D2344;
  width: 200px;
  padding: 20px;
  border: 3px solid #8850E9;
  font-size: smaller;
}

.frame {
  height:75%;
  width:75%;
}

/* MEDIA */
.contain {
  object-fit: contain;
  width:100%
}

.stretch {
  object-fit: fill;
  width:100%;
}

.stamp {
 width:50%;
 height:50%;
}

/* TEXT */

.update {
  padding:0px;
  gap:0px;
  margin:0px;
  font-size:12px;
}