body {
    display: flex;
    align-items: center;
    flex-direction: column;
    /* flex-flow: wrap */
}

#siteTitle { 
    font-size: 130%; 
}

.pageTitle { 
    font-size: 15px; 
}
.navBar {
    background-color: rgb(227, 232, 236);
    color: black;
    text-align: center;
    font-size: 20px;
    padding: 20px;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.473);
    border-radius: 0px 0px 20px 20px;
    margin-bottom: 25px; 
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; 
    box-sizing: border-box;
    width: 100%;
    max-width: 850px;
}

.navLink {
    background-color: rgb(0, 3, 206);
    border-radius: 5px 5px 5px 5px;
    padding: 10px;
    color: white;
    margin: 10px;
    font-size: 14px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.473);
    text-decoration: none;
    display: inline-block;
    border-radius: 10px 10px 10px 10px;
}

.mainContent {
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.473);
    text-align: center;
    margin-bottom: 25px;
    max-width: 750px;
    border-radius: 0px 0px 20px 20px;
    padding: 25px;
}

.content {
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.473);
    max-width: 750px;
    margin-bottom: 25px;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 0px 0px 20px 20px;
}

footer {
    margin: auto;
}

img {
    box-shadow: 0px 0px 6px 6px rgba(0, 0, 0, 0.473);
    max-width: 100%;
    height: auto;
    /* object-fit: contain; */
    margin: 10px;
}

/* Following code is for social media links styling */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
}

/* Hover effect */
.fa:hover {
    opacity: 0.7;
}

/* Facebook */
.fa-facebook {
    background: #3B5998;
    color: white;
}

/* Twitter */
.fa-twitter {
    background: #55ACEE;
    color: white;
}

/* instagram */
.fa-instagram {
    background: #3B5998;
    color: white;
}