:root {
  --dark-blue: #16303f;
  --dark-blue-trans: #16303fcc;
  --dark-red: #70302d;
  --sky-blue: #649db4;
  --book-purple: #684860;

  --bg-brown: #483e2a;
  --bg-light-brown: #826b52;
  --bg-light-yellow: #f8f8d7;
  --bg-off-white: #fbfbec;
  --bg-dark-green: #4b6319;
  --bg-mid-green: #637d49;
  --bg-light-green: #c6d58b;
}

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

body {
    height: 100vh;
}

.section {
    display: flex;
    flex-direction: column;
    justify-content:flex-start;

    width: 100%;
    height: 80vh;
    margin-top: 60px;

    margin-bottom: auto;

    scroll-margin-top: 80px
}


.section-header {
    margin-top: 20px;
    margin-bottom: 10px;

    margin-left: 10%;
    margin-right: 10%;

    display: flex;
    flex-direction: row;
    align-items: center;
}

.section-header h1 {    
    display: flex;
    justify-content: center;
    white-space: nowrap; /* no text wrap */

    padding: 0 20px 0 20px;

    margin-right: 25px;
    margin-left: 25px;

    font-weight: lighter;
    color: var(--dark-blue);
}

.section-header hr {
    width: 100%;
    margin: auto;

    border-style: solid;
    border-color: var(--dark-blue);
}


#background {
    position: fixed;
    top: 0;
    z-index: -1;

    height: 100vh;
    width: 100%;
    
    background-color: var(--bg-off-white);
    filter: blur(8px)
}



.info-block-container {
    margin-top: 40px;
    margin-right: 7%;
    margin-left: 7%;

    /* max-height: 100vh; */

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    background-color: var(--dark-blue);
    border-radius: 12px;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.45);
}

.info-block-container img {
    display: inline;
    width: 50%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
    /* margin-bottom: 20px; */
}

.info-block {
    width: 66%;
}

.info-block p {
    font-size: 22px;
    display: flex;
    justify-content: center;
    color: var(--bg-off-white);
    padding: 20px;

    /* backdrop-filter: blur(16px) saturate(180%); */
    /* background-color: var(--bg-off-white); */
    border-radius: 8px;
    /* border: 1px solid rgba(255, 255, 255, 0.125); */
}


/* Colors: 
#FF8A5B
#EA526F
#EDF2F4
#2B2D42
#8D99AE 
*/