* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    font-family: monospace;
}

/*div {
    position: absolute;
    width: 50%;
    height: 50%;
    cursor: pointer;
}*/

div:hover {
    background-color: white;
}

div {
  position: absolute;
  width: 50%;
  height: calc(50% - 10px); /* 40px의 절반씩 위아래에서 뺌 */
  cursor: pointer;
}

.jiye {
  background-color: #0894ff;
  top: 20px; /* marquee 높이만큼 아래로 */
  left: 0;
}

.minhye {
  background-color: forestgreen;
  top: 20px;
  left: 50%;
}

.eunah {
  background-color: lightblue;
  top: calc(50% + 10px); /* marquee 높이/2 만큼 아래 */
  left: 0;
}

.soobin {
  background-color: #ffffa9;
  top: calc(50% + 10px);
  left: 50%;
}

h1 {
    margin: 10px;
    font-size: 11pt;
    font-weight: normal;
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

audio {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

audio {
  display: none;
}

.active {
  background-color: white !important;
}

.playing {
  border: 2px dotted black;
}

marquee {
  padding-left: 10px;
  height: 20px;
  line-height: 20px;
  background: white;
  display: block;
}

@media screen and (max-width: 704px) {

}
