/*DOCTYPE CSS*/
/*(pg. 01)*/

@font-face {
font-family: CopperplateScript
src: url(copperplatescript.ttf)
}

@font-face {
font-family: Times;
src: url(times.ttf)
}

@font-face {
font-family: PlantC;
src: url(plantc.ttf)
}

.main-header {
display: flex;
justify-content: space-between; 
align-items: center;
padding: 1rem 5%;
background-color: #131417; 
border-bottom: 1px solid #ddd;
}

.logo a {
font-size: 1.5rem;
font-weight: bold;
text-decoration: serif;
color: #333;
}

.nav-links a {
    margin-left: auto; 
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #062FFF;
}

title {
    font-weight: bold;
    font-family: PlantC;
    font-size: 107%;
}

div {
    width: 100%;
}

h1 {
    font-family: CopperplateScript, serif;
    font-size: 140%;
    font-weight: bold;
    color: #062FFF;
    margin: 0;
}

body {
    background-color: #131417;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center; 
    color: #FFFFFF;
    min-height: 100vh;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
    width: 100%;           
    max-width: 1200px;     
    padding: 20px 40px;    
}

nav {
    display: flex;          
    gap: 20px;              
}

nav a {
    color: #FFFFFF;
    font-family: 'Times', serif;
    font-size: 110%;
    text-decoration: none;
    transition: 0.3s;       
}

nav a:hover {
    color: #062FFF;         
}

main {
    max-width: 1200px;
    width: 90%;
    text-align: center;
    margin-top: 40px;      
}

.news img {
    width: 205px;
    height: auto;
    border: 0;
    margin: auto;     
    display: block; 
    text-align: center;
}

h4 {
    font-family: Times;
    font-size: 108%;
    color: #FFFFFF;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
}

img {
    width: 205px;
    height: 317px;
    max-width: 100%;
    margin: auto;
    border: 0px;
    margin-bottom: 85px;
    text-align: center;
}

h6 {
    font-family: PlantC;
    color: #FFFFFF;
    font-size: 102%;
    text-align: center;
    line-height: 0.4;
    margin-bottom: 0px;
}

p {
    font-family: PlantC;
    color: #FFFFFF;
    font-size: 108%;
    margin-bottom: 60px;
    text-align: center;
    margin-left: 7px;
    margin-right: 7px;
    margin-top: 0px;
}

.Scripture {
    font-family: Times;
    font-size: 105%;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 25px;
    text-align: justify;
}

.mission {
    margin-bottom: 0px;
    margin-top: 95px;
    font-weight: bold;
}

footer {
    font-weight: normal;
    border-top: 1px solid #ddd;
}

@media screen and (max-width 480px) {
 header, main, footer {
    width: 100%;
}
}

@media screen and (max-width 768px) {
 header, main, footer {
    width: 100%;
}
}

@media screen and (max-width 960px) {
 header, main, footer {
    width: 100%;
}
}