/* CSS Document used for Project 1
Author: Melissa Elias
Course: ITWP 1000
File: styles.css

*/
body {
    margin-top: 1em;
    margin-bottom: auto;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    font-size: 2.5em;
}

h2 {
    text-align: center;
}

p {
    text-align: center;
}

nav {
    text-align: center;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #ffffff;
  }
  
  li {
    display: inline;
  }
  
  li a {
    display: inline-block;
    color: #000000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  figcaption {
    text-align: center;
    font-style: italic;
    font-size: .75em;
}

.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust as needed */
}
iframe {
    width: 80%; /* Adjust as needed */
    height: 80%; /* Adjust as needed */
}
.audio-container {
    display: flex;
    justify-content: center;
    align-items: center 
  }

/* caption tag */
caption {
    font-family: Impact, "Frankling Gothic Bold", "Arial Black", "sans-serif";
    font-weight: bold;
    font-size: 1.75em;
    padding-bottom: 0.5em;
}

/* responsive image class */
.responsive {
max-width: 100%;
height: auto;
border-radius: 10px;
}


/* ID */
#validation {
    text-align: center;
}

/*  media query that hides the image when the screen size is @ 550 pixels or lower */
@media only all and (max-width: 550px) {

    img {
        display: none;
    }
}