@import url(./style.css); @import url('https://fonts.googleapis.com/css2?family=Lemon&display=swap'); body, html { height: 100%; overflow: hidden; } /* ====== DARK MODE ====== */ body.dark-mode h1, body.dark-mode h2, body.dark-mode p { color: white; font-family: "Lemon", serif; text-align: center; } /* ====== LIGHT MODE ====== */ body.light-mode h1, body.light-mode h2, body.light-mode p { color: black; font-family: "Lemon", serif; text-align: center; } /* ====== OTHER ====== */ #form { width: 80%; height: 83%; display: flex; justify-content: center; align-items: center; } body.dark-mode #box { background-color: #1b0048; padding: 20px; width: 50%; margin: auto; border-radius: 15px; border: 1px solid #6100ff; } /* ====== DIVERS ====== */ #contentField, #characterField, #sourceField, #imageField { } #contentField p, #characterField p, #sourceField p, #imageField p { } #confirm { }