/* color palette : #FEE6DD */
/* color palette : #D6BA6F */
/* color palette : #FFEFCA */
/* Color Palette : #513022 */

.page-wrapper{
    font-family: verdana;
}

/* text adjust */
h1{
    color: black;
    text-align: center;
    font-size: 30px;
    text-decoration: underline;
    text-decoration-color: #D6BA6F ;
}
h2{
    font-size: 18px;
}
h3{
    font-size: 16px;
}
h4{
    font-size: 14px;
}
p{
    font-size: 12px;
}
a{
    font-size: 14px;
}
abbr{
    color: #D6BA6F;
}

/* Navigation */
nav{
    background-color: #FFEFCA ;
    border-bottom: 0.4em solid black;
    height: 50px;
    width: 100%;
}
.nav-logo-title{
    float: left;
    width: 30%;
}
.nav-logo-title img{
    content: url('https://1000logos.net/wp-content/uploads/2020/09/CSS-Logo.png');
    width: 50px;
    height: auto;
    float: left;
    margin-top: 10px;
}
.nav-logo-title a{
    text-decoration: none;
    float: left;
    margin-top: 15px;
    color: #513022;
}
nav ul{
    list-style-type: none;
    display: flex;
    justify-content: right;
    float: right;
    margin-right: 5%;
}
nav ul li{
    padding-left: 20%;
}
nav ul li a{
    text-decoration: none;
    color: #513022;
    padding: 7%;   
}
nav ul li a:hover{
   text-decoration: underline;
   font-size: 12pt;
   color: black;
}

/* Header */
#header{
    background-color:white;
}
.header-texts{
    text-align: center;
    justify-content: space-between;
    padding: 2%;
    padding-bottom: 6%;
}

/* Content */
.content-aside{
    box-shadow: 0px 0px 15px #513022;
    background-color: #FEE6DD;
    text-align: justify;
    justify-content:space-around;
    display:flex;
    margin-top: 10px;
    margin-bottom: 40px;
    padding-right: 5%;
}
.content{
    float: left;
    width: 70%;
    border-right-width: 0.2em;
    padding: 2%;
    border-right-style: solid;
    border-right-color: #513022 ;
}
.content-second{
    border-top-width: 0.2em;
    border-top-style: dashed;
    border-color: #513022;
}

.aside{
    clear: both;
    float:right;
    width: 30%;
}
aside ul li{
    list-style-type: none;
}
aside ul li a{
    text-decoration: none;
    color: blue;
}
aside ul li a:hover{
    font-size: 12pt;
    color: lightskyblue;
}
aside h2{
    text-indent: 10px;
    text-align: center;
}

/* Articles */
.articles{
    margin-top: 10px;
}
.article{
    padding: 1%;
    border-width: 0.2em;
    border-style: solid;
    background-color: #FFEFCA;
    border-radius: 10%;
    text-align: left;
}
.article:hover{
    background-color: #D6BA6F;
    box-shadow: 0px 0px 8px #513022;
}
.article img{
    content: url('https://buildwithangga.com/storage/assets/thumbnail_tips/thumbnail-css.jpg');
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10%;
    padding-top: 2%;
}
.row-second{
    text-align: justify;
}
.article-long{
    padding: 1%;
    border-left: solid 0.3em #D6BA6F;
    background-color: whitesmoke;
}
.article-long:hover{
    border-left: solid 0.5em #D6BA6F;
}
.row-second img{
    content: url('https://cdn.educba.com/academy/wp-content/uploads/2018/11/CSS-vs-JavaScript.jpg');
    width :100%;
    max-width: 100%;
    height: auto;
}

/* Creativity */
.creativity-wrapper{
    text-align: justify;
    margin-top: 40px;
}
.mini-one{
    float: left;
    width: 48%;
    padding-left: 1%;
}
.mini-one img{
    content: url('https://www.manchesterdigital.com/storage/12873/AdobeStock_446070781-%281%29.jpeg');
    max-width: 100%;
    max-height: auto;
}
.mini-two{
    float: right;
    width: 48%;
}
.mini-two img{
    content: url('https://www.manchesterdigital.com/storage/12873/AdobeStock_446070781-%281%29.jpeg');
    max-width: 100%;
    max-height: auto;
}
.mini-three{
    margin-top: 65px;
    float: left;
    width: 48%;
    padding-left: 1%;
}
.mini-three img{
    content: url('https://images.shiksha.com/mediadata/images/articles/1707905364phpqiseG5.jpeg');
    max-width: 100%;
    max-height: auto;
}
.mini-four{
    margin-top: 50px;
    float: right;
    width: 48%;
}
.mini-four img{
    content: url('https://images.shiksha.com/mediadata/images/articles/1707905364phpqiseG5.jpeg');
    max-width: 100%;
    max-height: auto;
}

/* Footer  */
footer{
    clear: both;
    background-color: #FFEFCA;
}
.footer-logo, .footer-form, .footer-credit{
    margin-top: 50px;
    padding-left: 1%;
    width: 30%;
    float: left;
}
.footer-logo{
    text-align: center;
}
.footer-form{
    padding-left: 2%;
    padding-right: 2%;  
    border-left: 2px solid;
    border-right: 2px solid;
    border-color: #513022;
}
.footer-credit{
    text-align: right;
}


/* Small Devices phone */
@media screen and (max-width: 600px){
    h1{
        font-size: 18px;
    }
    h2{
        font-size: 16px;
    }
    h3{
        font-size: 14px;
    }
    h4{
        font-size: 12px;
    }
    p{
        font-size: 10px;
    }
    a{
        font-size: 12px;
    }

/* Navigation Phone */
    nav ul li{
        padding-left: 5%;
    }
    .nav-logo-title a{
        margin-top: -20px;
        margin-left: 40px;
    }

/* Article Phone */
    .article img{
        width: 100%;
        max-width: 100%;
        padding-bottom: 2%;
        padding-top: 2%;
        height: auto;
        border-radius: 10%;
    }

/* Creativity Phone */
    .mini-four{
        margin-top: 28px;
        float: right;
        width: 48%;
    }

/* Footer Phone */
    .footer-logo{
        float: left;
        width: 38%;
    }
    .footer-form{
        padding: 1%;
        float: right;
        width: 58%;
        border-right-style: none;
    }
    .footer-credit{
        clear: both;
        margin-top: 10px;
        margin-left: 65%;
        width: none;
    }

/* Footer Size adjust */
    .footer-logo h3 {
        font-size: 12px;
    }
    .footer-logo p{
        font-size: 9px;
    }
    .footer-form p{
        font-size: 12px;
    }
    .footer-form label{
        font-size: 10px;
    }
    .footer-form option{
        font-size: 10px;
    }
    .footer-credit h3{
        font-size: 12px;
        text-align: right;
    }
}