@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    height: 100vh;
    background-image: url("forest.jpeg");
}

p {
    font-size: 1em;
    text-align: justify;
    line-height: 1.8em;
    padding: 0 2em;
}

#flashlight {
    --Xpos: 50vw;
    --Ypos: 50vh;
}

#flashlight:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    background: radial-gradient(
        circle 15em at var(--Xpos) var(--Ypos),
        rgba(0,0,0,0),
        rgba(0,0,0,1)
    );
}