/*
Author: Kamilah Sayyidi
Date: 3/5/2024
File Names: style.css
*/

/* CSS Reset */
 header, nav, footer, img, h4, ul, img {
    margin: 0;
    padding: 0;
    border: 0;
}

h1, h2, h4 {
    text-align: center;
}
h1, h2, h3, h4, p, li, nav li a {
    font-family: Molengo, Times, serif;
    color: #776663; 
}
h1 {
    font-size: 24px auto;
}

/* Style rules for body and images */
body {
    background-color: #fff3f5;

}

img {
    max-width: 50%;
    display: block;
}

/* Style rules for mobile viewpoint */

/* Style rule show mobile class and hide tab-desk class */
.mobile {
    display: block;
}

.tab-desk {
    display: none;
}

/* Style rules for header */
.mobile h1, .mobile h2 {
    padding: 2%;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

header {
    width: 60%;
    float: right;
    padding: 2% 0;
    
}

header img {
    margin: 25 auto;
}

/* Style rule for navigation area */
nav {
    background-color: #f7e4e4;
    width: 95%;
    float: left;
    margin: 0 auto;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 50px;
    
}

nav ul {
    list-style: none;
    margin: 5 auto;
    text-align: center;
}

nav li {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    border-top: 1.0px solid #efdae1;
}

nav li a {
    display: inline-block;
    color: #776663;
    text-align: center;
    padding: 0.5em 1em;
    text-decoration: none;
}

/* Style rule for main content */
main, main header{
    float: left;
    width: 90%;
    margin: 0;
    background-color: #ffffff;
    padding: 2%;
    font-size: 1.0em;
    /*text-indent: 2em;*/
}

main p {
    font-size: 1em;
}

main h2 {
    padding-top: 2%;
}

main ul {
    list-style-type: square;
}

.link {
    color: #efdae1;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
}

.round {
    border-radius: 6px;
}

#info ul {
    margin-left: 10%;
}

.introvideo, #introtext {
    width: 50%;
    float: right;
    margin: 5 5%;
}

.fieldtrip {
    margin-left: 20%;
    padding: 2% 2%;
    
}

#Quran {
    text-align: center;
    font-size: 15px;
    font-style: italic;
}

/* Style rules for footer content */
footer {
    clear: left;
    text-align: center;
    font-size: 12px;
    background-color: #fff3f5;
    padding: 2% 1% 0;
}