/* Peter Mackenzie, How to defeat the Ender Dragon */

/* center all header */
h1, h2, h3 , h4{
    text-align: center;
}

/* center nav */
nav {
    text-align: center;
    font-weight: bold;
}


/* center footer */
footer {
    text-align: center;
}

/* CSS for the body */
body {
    background-color: #D3D3D3; 
    color: #333333; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 10px; 
    }

/* center the figcaption */
    figcaption { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;}

/* Center images and audio */
    img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    audio {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive image */
    .responsive{
        max-width: 100%;
        height: auto;
        border: 2px solid #51471A;
        border-radius: 10 px;
    }

    /* iframe */ 
    iframe {
      border: none;
    }
    

