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

body {
    background-color: #7a706a;
}

h1 {
    text-align: center;
}

ul {
    list-style-type: none;
}

:root {
  --animation-time: 2s; 
}

#overlay {
    background-image: url('vga.png');
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-size: 100vw 100vh;
    opacity: 7%;
    pointer-events: none;
    z-index: 998;
}

@keyframes flicker {
  0% {
    opacity: .75;
  }
  100% {
    opacity: .5;
  }
}

#vignette {
    z-index: 999;
}

.blink {
    animation: flicker var(--animation-time) ease alternate infinite;
}

#vignette::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 0.667) 100%);
    position: absolute;
    top: 0; left: 0;
}

#deskWrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

#deathnote {
    transform: rotate(2deg);
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.472));
}

#deathnote:hover {
    transform: rotate(4deg) scale(105%);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.472));
}

#open {
    height: 90vh;
    z-index: -999;
}

.doll {
    position: absolute;
    pointer-events: none;
}

#L {
    width: 20%;
    left: 9%;
    bottom: 2%;
}

#contents {
    position: absolute;
    display: grid;
    height: 90vh; 
    width: 65vw;
    grid-template-columns: 50% 50%;
}

#contentsLeft {
    padding: 5%;
}

#contentsRight {
    padding: 5%;
}

.tabcontent {
    display: none;
    flex-direction: column;
    align-items: center;
}