/* CSS document used for the web project 1 assignment
Author: Xavier Sweet-Hawk
Course: ITWP 1000
File: webpage1.css */

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

/* centers content within the header and nav elements */
header, nav, footer {
    text-align: center;
}

/* border */
nav {
    border-style: solid;
}

/* background color */
body {
    background-color: #915f6d;
}

/* font color */
body {
    color: #b6ffbb;
}

h1 {
    color: #b6ffbb;
}

/* font family */
p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* margin */
p {
    margin: 10px;
}

/* image */

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
    border: 1px solid #b6ffbb;
    border-radius: 10px;
}

@media only all and (max-width: 550px) {

    img{display: none;
    }
}

.audio-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.center {
    text-align: center;
}