@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700&family=Open+Sans&display=swap');

:root{
    --red: #D99494;
    --deep-red: #FC0000;
    --white: #FFFFFF;
    --black: #000000;
    --subtle-black: #3b3b3b;
    --gray: #6b6b6b;
}

.cic-header{
    background-color: var(--red);
    width: 100%;
    height: 33vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cic-book-banner{
    background-image: url('https://cindyinchina.com/resources/images/boek_banner.png');
    background-size: cover;
    width: 100%;
    height: 33vh; 
}

.cic-title-header{
    position: relative;
    text-align: center;
}

.cic-rounded-image{
    width: 125px;
    height: 125px;
    border-radius: 62px;
    border: 3px solid var(--deep-red);
    margin-left: 20px;
}

.cic-button{
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.cic-article{
    margin-top: 30px;
}

.cic-article a{
    text-decoration: none;
}

.cic-paragraph{
    font-family: 'Open Sans', sans-serif;
    margin-top: 30px;
    color: var(--subtle-black);
}

.cic-external-site{
    margin-left: 5px;
}

.cic-social{
    font-size: 1.9em;
    margin-top: 30px;
}

.cic-social a{
    color: var(--subtle-black);
}

.cic-image-button{
    max-width: 100%;
    border-radius: 7px;
    filter: grayscale(100%)
}

.cic-image-button:hover{
    filter: grayscale(0%)
}

.cic-back-button{
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 0px;
}

.cic-back-button:hover{
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 0px;
}

.cic-timeline{
    margin-top: 30px;
}

.cic-timeline a{
    color: var(--subtle-black);
}

.cic-timeline a:hover{
    color: var(--subtle-black);
}

.cic-footer{
    margin-top: 30px;
    text-align: center;
}

.cic-highlighted{
    font-style: italic;
}

h1{
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--white);
}

h1.article-title{
    font-family: 'Merriweather', serif;
    font-size: 2vw;
    font-weight: 700;
    color: var(--white);
}

@media screen and (min-width: 601px) {
    h1.article-title{
        font-family: 'Merriweather', serif;
        font-size: 1.8em;
        font-weight: 700;
        color: var(--white);
        padding: 10px;
    }

    h4{
        font-family: 'Open Sans', sans-serif;
        color: var(--white);
        padding-left: 10px;
        padding-right: 10px;
    }
  }
  
@media screen and (max-width: 600px) {
    h1.article-title{
        font-family: 'Merriweather', serif;
        font-size: 1.2em;
        font-weight: 700;
        color: var(--white);
        padding: 10px;
    }

    h4{
        font-family: 'Open Sans', sans-serif;
        font-size: 0.8em;
        color: var(--white);
        padding-left: 10px;
        padding-right: 10px;
    }
  }

h3{
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(5px 5px 5px var(--black));
}

h2{
   font-family: 'Open Sans', sans-serif;
   font-weight: bold;
   font-size: 1.25em; 
}

h4{
    font-family: 'Open Sans', sans-serif;
    color: var(--white);
    padding-left: 10px;
    padding-right: 10px;
}

h5{
    font-family: 'Open Sans', sans-serif;
    color: var(--gray);
    font-size: 0.9em;
}

h6{
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: -2px;
    color: var(--subtle-black);
}

h7{
    font-family: 'Merriweather', sans-serif;
    font-weight: 300;
    font-size: 0.8em;
    color: var(--subtle-black);
}

.cic-ext-link{
    text-decoration: none;
    color: var(--subtle-black);
}

.cic-ext-link:hover{
    text-decoration: none;
    color: var(--subtle-black);
}

.cic-ext-link:visited{
    text-decoration: none;
    color: var(--subtle-black);
}