/*
    John (Selene) Phillips, December 8th 2024, IST-239-W01, blog CSS File

    This is the external Stylesheet (css file) that styles the blog page.
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Liquid 3 Column Layout */
.content {
    display: flex;
    width: 100%;
    justify-content: center;
}

.LeftColumn {
    flex: 1;
    width: 25%;
    padding: 20px;
}

.MiddleColumn {
    flex: 1;
    width: 50%;
    padding: 20px;
}

.RightColumn {
    flex: 1;
    width: 25%;
    padding: 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(backgroundMoreBlur.jpg);
    background-size: cover;
}

header h2 {
    font-family: "Lucida Handwriting", cursive, sans-serif;
    font-size: 50px;
    text-shadow: 2px 2px 4px rgb(255, 130, 236);
}

header h3 {
    font-family: "Lucida Handwriting", cursive, sans-serif;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgb(255, 130, 236);
}

/* Overall Styles */
html {
    font-family: "Lucida Handwriting", cursive, sans-serif;
}

p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', Verdana, sans-serif;
}

/* Navigation Bar Styles */
.navbarList {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(255, 177, 243);
}

#navbar {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.unclicked:hover {
    background-color: rgb(255, 141, 238);
}

.currentTab {
    background-color: rgb(255, 95, 231);
}

/* Column Styles */

/* Left Column Styles */
figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
.berserk img {
    max-width: 60%;
}
  
.berserk figcaption {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    padding-top: 20px;
}
  
.koeNoKatachi img {
    padding-top: 40px;
    max-width: 60%;
}
  
.koeNoKatachi figcaption {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    padding-top: 20px;
}

/* Middle Column Styles */
.firstArticle h2 {
    display: block;
    background-color: rgb(255, 95, 231);
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    text-shadow: 0px 0px 2px black;
}

.firstArticle {
    display: block;
    background-color: white;
}

.secondArticle h2 {
    display: block;
    background-color: rgb(255, 95, 231);
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 25px;
    text-shadow: 0px 0px 2px black;
}

.secondArticle {
    display: block;
    background-color: white;
}

.secondArticle a {
    float: right;
}

.thirdArticle h2 {
    display: block;
    background-color: rgb(255, 95, 231);
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 25px;
    text-shadow: 0px 0px 2px black;
}

.thirdArticle {
    display: block;
    background-color: white;
}

.thirdArticle a {
    float: right;
}

.fourthArticle h2 {
    display: block;
    background-color: rgb(255, 95, 231);
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 25px;
    text-shadow: 0px 0px 2px black;
}

.fourthArticle {
    display: block;
    background-color: white;
}

.fourthArticle a {
    float: right;
}

.fifthArticle h2 {
    display: block;
    background-color: rgb(255, 95, 231);
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 25px;
    text-shadow: 0px 0px 2px black;
}

.fifthArticle {
    display: block;
    background-color: white;
}

.fifthArticle a {
    float: right;
}


/* Right Column Styles */
.date {
    display: block;
    width: 140px;
    height: 80px;
    background-color: white;
    box-shadow: 1px 1px 4px black;
    text-align: center;
    float: right;
}

.clockLabel {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: "Lucida Handwriting", cursive, sans-serif;;
    text-shadow: 1px 1px 4px rgb(255, 130, 236);
}

.reincarnated img {
    padding-top: 40px;
    max-width: 60%;
}
  
.reincarnated figcaption {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    text-align: center;
    overflow: hidden;
    font-size: 14px;
    padding-top: 20px;
}

.oshinoko img {
    padding-top: 40px;
    max-width: 50%;
}
  
.oshinoko figcaption {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    text-align: center;
    overflow: hidden;
    font-size: 16px;
    padding-top: 20px;
}

/* Body Style */
body {
    min-height: 100vh;
    margin: 0;
    background-image: linear-gradient(to bottom, rgb(255, 255, 255), rgb(255, 168, 241));
}

/* Footer Styles */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}