*,
*::before,
*::after {
	margin 0;
	padding 0;
	box-sizing: border box;
	font-size:  100%;
  text-decoration: none;
}

body {
padding: 32px;
font-family: "Noto Serif KR", serif;
font-size: 14px;
word-break: keep-all;
}

h1 {font-size: 14px;}

mark {background-color: black; color: white;}

.document {
	position: absolute;
	bottom: 60px;
	right: 16px;
	top: 0;
  max-width: 600px;
  max-height: 500px;
  padding: 40px;
  font-size: 16px;
  line-height: 1.7;
  background-color: white;
  text-align: left;
}

  .document.left {
  width: 70%;
  left: 0;
  }

  .document.right {
  position: absolute;
  font-size: 14px;
  width: 35%;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 16px 16px -16px lightblue;
  right: 0;
  }


  .tangerine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); 
    width: 400px;
    height: 400px;
  }

  .leaf {
    position: absolute;
  }

  .leaf.left{
    top: 90px;
    width: 80px;
    height: 50px;
    left: 115px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background-image: linear-gradient(forestgreen,greenyellow);
  }

  .leaf.right{
    z-index: 5;
    top: 116px;
    left: 205px;
    width: 60px;
    height: 40px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background-image: linear-gradient(forestgreen,greenyellow);
  }

  .twig {
    position: absolute;
    z-index: 4;
    top: 120px;
    left: 195px;
    width: 10px;
    height: 40px;
    background-image: linear-gradient(forestgreen,yellowgreen);
  }

  .stalk {
    position: absolute;
    z-index: 3;
    top: 155px;
    left: 190px;
    width: 20px;
    height: 10px;
    background-color:yellowgreen;
    border-radius: 55% 55% 50% 50%;
  }

  .kernel {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 50px;
    width: 300px;
    height: 250px;
    background-image: radial-gradient(orange,darkorange) ;
    border-radius: 55% 55% 50% 50%;
  }

  .spot {
    position: absolute;
    top: 20px;
    left: 100px;
    font-size: 30px;
    text-align: center;
    letter-spacing: 18px;
    line-height: 35px;
    word-break: keep-all;
  }

  .spot:hover {
    animation: breath .6s infinite alternate;
    transition: .6s;
  }

  .highlight {
    position: absolute;
    top: 75px;
    left: 220px;
    width: 25px;
    height: 25px;
    background-color: white;
    filter: blur(10px);
  }


  @keyframes breath {
    0% {
    transform: scale(1);
    }

    100% {
    transform: scale(1.25);
    }
  }

  .leaf: hover {
    animation: breath 1s infinite alternate;
    border-radius: 0;
    bottom: 10px;
    }


