html,body{
	scroll-behavior: smooth;
	background: #f4f3ff;
	margin: 0px;
}

body{
	width: 100%;
}

p{
    font-family: "Newsreader";
    font-weight: 380;
    font-size: 1.15em;
    line-height: 1.3em;
	text-align: justify;
    margin-top: 0px;
    margin-bottom: 12px;
}

a{
  color: #000000;
}

.italic{
	font-weight: 500;
    font-style: italic;
    color: #50508c;
}

.story{
    position: relative;
    columns: 4;
    gap: 20px;
    padding: 50px;
    margin-bottom: 400px;
    z-index: 1;
}

.lamp-smoke{
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #f4f3ff;
    transition: background-color 2s ease-in-out;
}

.lamp{
    width: 20%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 3;
}

.smoke{
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 2;
}

.lamp, .smoke{
    transition: transform 0.6s ease-in-out; /* smooth size change */
    transform-origin: center bottom; /* scale from bottom center */
}

/*LAMP SCALES ON HOVER*/
.lamp:hover{
    transform: translate(-50%, 0%) scale(1.15);
}

/*SMOKE ALSO SCALES WHEN LAMP IS HOVERED*/
.lamp:hover ~ .smoke{
    transform: scale(1.15); /* 10% larger */
}