@import url('https://fonts.googleapis.com/css2?family=Cormorant&family=Proza+Libre&display=swap');

img {
    max-width: 100%;
}

body {
    font-size: 18px;
    color: #444444;
    background-color: #ffeff1;
    font-family: 'Proza Libre', sans-serif;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

header h1 {
    font-family: 'Cormorant', serif;
    font-size: 2em;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 10px;
    text-shadow: 2px 2px 2px #CCCCCC
    
}

header * {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-evenly;
}

h2 {
    font-size: 1.38em;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    text-align: left;
    margin: 10px;
    text-shadow: 2px 2px 2px #CCCCCC
}

h3 {
    font-size: 1em;
    font-family: 'Cormorant', serif;
    font-weight: 400;
    font-style: italic;
    text-align: left;
    margin: 10px;
    text-shadow: 2px 2px 2px #CCCCCC
}

.hamburger-menu {
    display: none;
}

.fixed-navbar {
    background-color: #aa6666;
    font-family: 'Cormorant', serif;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 2.77em;
    align-items: center;
    border-bottom: solid 2px #527fac;
    text-decoration: none;
}

.fixed-navbar-categories {
    display: inline-flex;
    justify-content: space-evenly;
    
}

.fixed-navbar li {
    font-size: 1.2em;
    line-height: 2.77em;
    height: 2.77em;
    margin: 1.11em;
    
}

.fixed-navbar a {
    text-decoration: none;
    color: #ffeff1;
    
}

.fixed-navbar a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.fixed-navbar a:visited {
    color: #ffffff;
}

main {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

p {
    margin: 10px;
}

p, .main-ul {
    display: inline-block;
    text-align: left;
    padding-top: 5px;
    line-height: 1.4em;
}

.main-ul {
    margin: 25px;
    max-width: 80vw;
}

li {
   list-style-type: square;
   padding-bottom: 10px; 
}

a {
    color: #AC5252;
}

a:hover {
    text-decoration: double;
}

a:visited {
    color: #AC7676;
    text-decoration: dotted;
}

.home-text {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.2em;
    position: relative;
}

.home-text p {
    display: flex;
    flex-direction: column;
}

.me, .notepad {
    display: inline-block;
    text-align: center;
    justify-content: center;
    padding: 20px 0px 20px 0px;
}

.me img {
    text-align: center;
    max-width: 60%;
    border: solid 2px #527fac;
    border-radius: 5px;
}

.notepad img {
    text-align: center;
    max-width: 60%;
    border: solid 2px #527fac;
    border-radius: 5px;
}

blockquote {
    margin: 0;
}

blockquote p {
    padding: 15px;
    background: #eedee0;
    border-radius: 5px;
}

blockquote p::before {
    content: '\201C';
    position: relative;
    left: 0px;
    top: 40px;
    font-size: 5em;
}

blockquote p::after {
    content: '\201D';
}

blockquote footer {
    padding: 0px 5px 10px 5px;
    font-weight: 600;
    
    
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px 0px 10px 0px;
}

.copyright-design {
    font-size: 0.6em;
}

.ciep-logo img {
    max-width: 25%;
}

.break {
    flex-basis: 100%;
    height: 0;
}

@media (max-width: 570px) { 
    .fixed-navbar-categories {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: row;
        justify-content: right;
        padding-right: 10px;
        padding-top: 0px;
        margin-top: 0px;
        position: relative;
    }

    .hamburger-menu-icon {
        font-family: 'Cormorant', serif;
        color: #ffeff1;
        font-size: 2em;
        z-index: 9999; 
        position: fixed;
        top: 8px;
        right: 10px; 
    }

    .up-arrow-icon {
        font-family: 'Cormorant', serif;
        color: #ffeff1;
        font-size: 2em;
        z-index: 9999; 
        position: fixed;
        top: 8px;
        right: 15px; 

    }

    .hamburger-menu-options {
        background-color: #aa6666;
        display: none;
        position: absolute;
        top: 42px;
        right: -10px;
        
    }

    .hamburger-menu-options a {
        padding: 10px;
        color: #ffeff1;
        font-family: 'Cormorant', serif;
        font-size: 1em;
        box-sizing: border-box;
        display: block;
        width: 100%;
        border-top: 1px solid #444444;
        text-decoration: none;
        }

    .hamburger-menu-options a:hover {
        text-decoration: underline;
    }

    .hamburger-menu input[id="hamburger"]:checked ~ .hamburger-menu-options {
        display: block;
    }

    .hamburger-menu-icon input[id="hamburger"] {
        opacity: 0;
    }
    
    .hamburger-menu-icon input[id="hamburger"]:checked + label {
        display: none;
    }

    .up-arrow-icon input[id="up-arrow"] {
        opacity: 0;
    }
    
    .up-arrow-icon input[id="up-arrow"]:checked + label {
        display: none;
    }

    header h1 {
        padding-top: 60px;
    }

    .ciep-logo img {
        max-width: 25%;
    }

    .main-ul {
        max-width: 70vw;
    }
}

@media (min-width: 768px) {

    .banner-container {
        opacity: 75%;
        width: 992px;
        height: 205px;
        max-height: 30vh;
        background-image: url("images/words-banner-992.jpg");
        background-repeat: no-repeat;
    }

    .home-text {
        text-align: center;
    }

    h2, h3 {
        max-width: 65vw;
        margin-left: 16vw;
    }

    p {
        max-width: 65vw;  
    }

    .main-ul {
        max-width: 55vw;
    }

    .ciep-logo img {
        max-width: 20%;
    }

    .notepad img {
        max-width: 40%;
    }
}

@media (min-width: 992px) {
    .banner-container {
        width: 1200px;
        max-height: 30vh;
        background-image: url("images/words-banner-1200.jpg");
    }
    
    p {
        max-width: 50vw;
    }

    .main-ul {
        max-width: 42.5vw;
    }

    h2, h3 {
        max-width: 50vw;
        margin-left: 24vw;
    }

    .ciep-logo img {
        max-width: 15%;
    }
}

@media (min-width: 1200px) {
    .banner-container {
        width: 1800px;
        max-height: 30vh;
        background-image: url("images/words-banner-1800.jpg");
    }

    p {    
        max-width: 50vw;
    }

    .main-ul {
        max-width: 42.5vw;
    }

    h2, h3 {
        max-width: 50vw;
        margin-left: 24vw;
    }

    .ciep-logo img {
        max-width: 10%;
    }
}

@media (min-width: 1800px) {
    .banner-container {
        width: 3440px;
        max-height: 30vh;
        background-image: url("images/words-banner-3440.jpg");
    }

    p {
        max-width: 40vw;
    }

    .main-ul {
        max-width: 34vw;
    }

    h2, h3 {
        max-width: 40vw;
        margin-left: 29vw;
    }

    .ciep-logo img {
        max-width: 5vw;
    }

    .me img {
        text-align: center;
        max-width: 50%;
    }
}