:root {
    --overlay-opacity: 0.20;
}

body{
    position: relative;
    background: linear-gradient(135deg,#b3e0ff 0% #005fa3 100%0)
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('images/Lennon.jpg')center/cover no-repeat;
    opacity: var(--overlay-opacity);
    pointer-events: none;
    z-index: 0;
}




.transparent-box {
    background: transparent !important;
    border: 3px solid #1a237e !important;
    color: rgb(255, 242, 0);
    box-shadow: none;
}



html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}


body {
    font-family: "fagun", sans-serif; 
    font-weight: 700;
    font-style: normal;
    background: linear-gradient(135deg, #b3e0ff 0%, #005fa3 100%);
    font-size: 1em;
    width: 80%; /* sets page margin */
    margin: 0 auto;
}

nav{
    margin-top: 1.5em;
    margin-bottom: 2em;
    margin-left: .5em;
}





h1 {
    margin-left: 10px;
    color: #1a237e;
    /* text-align: right; */
}


/* Modern quote grid layout */

.cascade-quote {
    position: relative;
    /* make the quote area taller so the page is scrollable */
    min-height: 1200px;
    margin: 3em 0 2em 0;
}

/* extra space below main content so footer doesn't overlap when scrolling */
main {
    padding-bottom: 6rem;
}

@media (max-width: 900px) {
    .cascade-quote {
        min-height: 900px;
    }
}


.quote-box, .quote-circle {
    position: absolute;
    background: rgba(255,255,255,0.85);
    color: #1a237e;
    border-radius: 1em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 1.2em 1.5em;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    user-select: none;
}
/* .quote-box:hover, .quote-circle:hover { */
    /* transform: translateY(-6px) scale(1.04); */
    /* box-shadow: 0 8px 24px rgba(0,0,0,0.18); */
/* } */
.quote-circle {
    background: linear-gradient(135deg, #b3e0ff 20%, #005fa3 100%);
    color: #fff;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    margin: 0 auto;
}
.box-sm {
    font-size: 1em;
    padding: 0.7em 1em;
    width: 80px;
    height: 50px;
}

/* Make the word "is" much larger and overlapping */
.big-is {
    font-size: 3.5em; /* large text */
    line-height: 1;
    width: auto;
    height: auto;
    padding: 0.2em 0.4em;
    background: transparent; /* allow lettering to overlap borders */
    color: #1a237e;
    z-index: 20; /* sit above other quote boxes */
    transform: translate(-10px, -6px); /* nudge to overlap the box edge */
}

@media (max-width: 900px) {
    .big-is {
        font-size: 2.2em;
        transform: none;
    }
}
.box-md {
    font-size: 1.2em;
    padding: 1em 1.2em;
    width: 120px;
    height: 70px;
}
.box-lg {
    font-size: 1.5em;
    padding: 1.2em 1.5em;
    width: 160px;
    height: 90px;
}
.box-xl {
    font-size: 1.7em;
    padding: 1.5em 2em;
    width: 300px;
    height: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.outlined {
    border: 3px solid #1a237e;
    background: rgba(255,255,255,0.7);
}
.highlight {
    background: #1a237e;
    color: #fff;
}
.author {
    position: absolute;
    /* place the author to the left of the "plans." box (which is at left:220px; top:700px) */
    left: 40px;
    top: 700px;
    color: #fff;
    font-size: 1.2em;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 50;
}

/* If the container is wide enough this will keep the author to the right.
   For medium widths, fall back to a fixed offset so it doesn't run off-screen. */
/* keep author near plans on medium widths; on narrow screens it will snap below */
@media (max-width: 1300px) {
    .author {
        left: 30px;
    }
}
@media (max-width: 1000px) {
    .author {
        left: 20px;
    }
}

/* Keep the author absolutely positioned at all sizes so it stays fixed relative
   to the quote layout and doesn't jump when the viewport is resized. */

.divide {
    /* BREAKS THE FLOAT */
    margin-top: 10px;
    clear: left;
    height: 10px;
}

/* GENERAL BOX EFFECTS */

.nobox {
    background-color: #e50a0a00;
    /* the last two numbers in the color are opacity = 00 */
}

.shadow {
    box-shadow: 10px 10px 8px #000000;
}

.line1 {
    border: 2px #ffffff solid;
}

.whitetext {
    color: #fff;
}

.square, .medium_square, .large_square, .rectangle, .small_circle {
    font-size: 30px;
}

.bigger-font {
    font-size: 4em;
}


/*/ / / TOP NAVIGATION AREA / / /*/



footer {
    font-size: .8em;
    clear: left;
    padding-top: 2em;
    color: #ffffff;
}



/* / / / REGULAR PAGE LINKS / / / */

a:link {
    /*Sets default links style*/
    color: rgb(255, 242, 0);
    text-decoration: none ; /* "none" =  no underline */
  }
  
  a:hover {
    /*Sets default link mouseover style*/
    color: #ffffff;
    text-decoration: underline;
  }
  
  a:visited {
    color: rgb(255, 242, 0);
    text-decoration: none;
  }
  
  a:active {
    color: #fff;
    text-decoration: none;
  }
  

  /* / / / BOTTOM OF PAGE / / / */

 footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: rgb(203, 203, 203);
    padding: 1em; 
 }

