/* Adding a new font*/
@font-face {
    font-family: new_font;
    src: url('fonts/minecraft/Minecraft.ttf');
}

/* Customation tto the text and the body*/
body, p, a {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

/* Adding the background*/
body {
    background-image: url('../20%\ HTML\ website/img/Stones.png');
    text-align: center;
}

/* adding the transparent backgorund which holds the content of the page */
#container {
    max-width: 1200px;
    margin: auto;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/*header 1 design*/
header {
    background: #228B22;
    padding: 20px;
}

header h1 {
    font-size: 50pt;
    text-shadow: 5px 5px #000;
    font-family: new_font;
}

/*========================== navigation style code ===========================*/
nav {
    background: #006400;
    padding: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-shadow: 2px 2px #000;
}

nav a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    margin: 5px;
    transition: background 0.3s ease;
}

nav a:hover {
    background: #32CD32;
}
/*========================== main body style code ===========================*/
#main {
    padding: 30px;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/*header 2 and 3 design*/
#main h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #32CD32;
    font-family: new_font;
}
/*list design*/
#main ul {
    list-style-position: inside; 
    text-align: center;    
    padding: 0;
  }

#main h3 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #32CD32;
    font-family: new_font;
}
/**/
#main p {
    line-height: 1.6;
    font-size: 18px;
}

/*image design*/
#main img{
    border-radius: 9px;
    border-width: 10px;
}

/*=================================== Footer style code =======================*/
footer {
    background: #006400;
    padding: 15px;
    font-size: 14px;
    text-align: center;
}
