/*  Developer: Mikalie Lai    */
/*  Last updated: December 20, 2021 */

.container-fluid {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

/* SansSerif font */
@font-face {
    font-family: 'SansSerifFLF';
    src: url('SansSerifFLF.otf');
}
/* End SansSerif font */

.navigation-li {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-style: bold;
    font-size: 30px;
    display: inline-block; 
    position: relative; 
    padding: 0px 30px 0px 30px; 
}

.navigation-bar {
    text-align: center;
    display: block;
    position: fixed;
    z-index: 10;
    width: 100%;
    padding: 8px;
    padding-top: 25px;
    background-color: #672347;
} 

.main {
    max-width: 900px;
    margin: 0 auto;
}

a.header-link {
    color: #eee7eb;
}

a.header-link:hover {
    color: #ccb6c2;
    text-decoration: none;
}

a.text-link {
    color: #0b3256;
    font-weight: bold;
}

a.text-link:hover {
    color: #32560b;
    text-decoration: none;
}

a.footer-link {
    color: #eee7eb;   
}

a.footer-link:hover {
    color: #ccb6c2;
    text-decoration: none;
}

a[name="About"] {
    display: block;
    position: relative;
    top: -250px;
}

a[name="Portfolio"] {
    display: block;
    position: relative;
    top: 30px;
}

.about-title {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 70px;
    color: black;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 10px;
}

.about-text {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 20px;
    text-align: justify;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10%;
    margin-right: 10%;
}

.portfolio-title {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 70px;
    color: black;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;
}

.contact-title {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 70px;
    color: black;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;    
}

.context-block {
    margin-bottom: 150px;
}

.contact-text {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    font-size: 20px;
    text-align: justify;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10%;
    margin-right: 10%;  
}

.portfolio {
    width: 70%;
    display: block;
    margin: auto;
    margin-top: 2em;
    margin-bottom: 2em;
}

img {
    border-style: solid;
    border-width: 5px;
    border-color: #090105;
}

.block-footer {
    font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
    text-align: center;
    font-size: 20px;
    color: #C0C0C0;
    background-color: #672347;
    padding: 40px 0px 40px 0px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Mobile responsiveness section*/

@media all and (max-width: 700px) {
    [class*="title"] {
        font-size: 50px;
    }
    
    .about-title {
        margin-top: 150px;        
    }        
    
    a[name="Portfolio"] {
    display: block;
    position: relative;
    top: -50px;
    }
}

@media all and (max-device-width: 550px) {
    [class*="title"] {
        font-size: 50px;
    }    
    
    .navigation-li {
        padding: 5;
        display: inline;
    }
    
    .navigation-li:after {
        content: "\a";
        white-space: pre;
    }

    .about-title {
        margin-top: 200px;        
    }        

    [class*="text"] {
        text-align: left;
    }

}