body {
  margin: 0;
 padding: 0;
 width: 100%;
 height: 100%;

}

.wrapper {
min-height: 100vh;
  width: 100%;

  background-image: url("images/cutsie.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  padding: 20px;
}

.juminocore-container {
  width: 500px;
  height: 100px;
  margin: 60px 0 10px 300px; 
  position: relative;
}

.jumino {
  width: 650px;
  height: 150px;
  border: 1px dotted #d48a02;
  border-radius: 20px;
  background-image: url("images/juminocore.jpg");
  background-size: cover;
  background-position: 50% 10%;
}

.inner { 
  position: relative;         
 width: 650px;
         
  margin: 80px 0 30px 300px;      
  padding: 20px;
  background-color: beige;
  border: 5px dotted #d48a02;
  border-radius: 20px;       
  
  box-sizing: border-box;
  font-weight: bold;
}

.inner p {
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: #5C4033;
}

.corner {
  position: absolute;
  width: 40px;  /* adjust size of GIF */
  height: 40px;
}

.top-left {
  top: -20px;    /* moves GIF above container */
  left: -20px;
}

.top-right {
  top: -20px;
  right: -20px;
}

.bottom-left {
  bottom: -20px;
  left: -20px;
}

.bottom-right {
  bottom: -20px;
  right: -20px;
}





.sub {
 	padding: 5px;
	font-style: italic;
	font-family: 'Assasin Aerox', sans-serif;
	color: black;
	text-shadow: 
  -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff,
  -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff,
  0px 0px 20px rgba(255, 255, 255, 0.7), 0px 0px 20px rgba(255, 255, 255, 0.7), 0px 0px 20px rgba(255, 255, 255, 0.7);

	position: absolute;
	top: 20px;
	right: 20px;
	margin: 0;
}

  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #eeeeee;
  --content-background-color: #fff7ad;
  --sidebar-background-color: #ffffff;

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #3737e8;
  --link-color-hover: #5c1c50;

  /* Text: */
  --font: Georgia, serif;
  --heading-font: Georgia, serif;
  --font-size: 14px;


}



