@charset "utf-8";

/*
    MIDTERM ITD 110
    Author: Tanner Fee
    Date: 10/19/2021
    Filename: styles.css

/* HTML and Body Styles */

html {
    background: rgb(255, 0, 0);
    font-family: cursive;
    font-size: 12px; 
}

body {
    background: grey;
    max-width: 1024px;
    margin: 0px auto;
    box-shadow: rgb(51, 51, 51) 10px 10px 25px, rgb(51, 51, 51) -10px 10px 25px;
}

body > header {
    background: grey;
    width: 60%;
}

img#logoImage {
    display: block;
    width: 30%;
    text-align: center;
    max-width: 200px;
    margin-left: auto;
    padding: 10px;
}

p#content {
    font-size: 1.7em;
    line-height: 1.6em;
    margin: 25px;
    text-align: center;
}

p#content1 {
    font-family: fantasy;
    font-size: 1.7em;
    line-height: 1.6em;
    margin: 25px;
    text-align: center;
}

p#content2 {
    font-family: sans-serif;
    font-size: 1.7em;
    line-height: 1.6em;
    margin: 25px;
    text-align: center;
}

p#content3 {
    font-family: monospace;
    font-size: 1.7em;
    line-height: 1.6em;
    margin: 25px;
    text-align: center;
}
nav#top {
    float: left;
}
nav#top ul {
    margin: 0;
    padding: 35px;
    list-style: none;
}
nav#top li {
    display: inline-block;
    margin-left: 85px;
    padding-top: 23px;
    postion: relative;
    font-family: monospace;
}

nav#top a{
    color: blue;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

nav#top a:hover {
    color: yellow;
}

nav#top a::before {
    display: block;
    height: 5px;
    background color: #444;
    position: absolute;
    top: 0;
    width: 0%;
}

nav#top a:hover::before {
    width: 100%;
}
/* Aside Styles */

aside {
   background-color: rgb(189, 183, 107);
}

aside h1 {
    font-family: fantasy;
    font-size: 3em;
    font-weight: normal;
    letter-spacing: 0.2em;
    text-align: center;
    margin: 25px 10px 10px;
}

article img#first {
    align-content: center;
    padding-left: 130px;
    margin: 10px auto;
}

article img#second {
    align-content: center;
    padding-left: 20px;
    margin: 10px auto;
}
article h1 {
    text-align: center;
    font-family: serif;
    font-size: 40px;

}
/* Description List */

p#sales {
    text-align: center;
    font-family: fantasy;
    font-size: 25px;
}

aside img {
    align-content: center;
    width: 25%;
    padding-left: 385px;
    
}

.videowrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0px;
}

.videowrapper iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
}

table {
    width: 1025px;
}

th {
    text-align: left;
}

caption {
    font-size: 30px;
}

table, th, td {
    border: 1px solid #000;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
}

tr:nth-child(even) {
    background-color: skyblue;
}

tr:nth-child(odd) {
    background-color: lightyellow;
}

form {
    width: 500px;
    align-content: center;
    padding-left: 50px;
    margin: 10px auto;
}

input {
    width: 110%;
}

textarea {
    resize: vertical;
    max-height: 100px;
}

input, textarea {
    outline: none;
    border: 1px solid #ddd;
}

input:focus, textarea:focus {
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.5);
    border: 1px solid rgb(255, 0, 0);
}

::placeholder {
    color: grey;
    opacity: 1;
}

:-ms-input-placeholder {
    color: grey;
    opacity: 1;
}

::-ms-input-placeholder {
    color: grey;
    opacity: 1;
}

dl dd {
    font-family: fantasy;
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
}

p#links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
}

p#links a{
    background-color: coral;
    border-radius: 25px;
    color: black;
    padding: 15px;
    text-decoration: none;
    font-size: 1.5em;
    line-height: 1.4em;
    margin: 20px;
    text-align: center;
}

footer {
    width: 1024px;
}

nav#bottom {
    background-color: rgb(102, 153, 204);
    color: rgb(211, 211, 211);
    text-align: center;
    padding: 15px 0px;
}

nav#bottom ul li {
    font-size: 1.9em;
    line-height: 1.6em;
    text-decoration: none;
}

nav#bottom a {
    color: black;
    text-decoration: none;
}

footer p {
    color: rgb(128, 128, 128);
    font-size: 0.9em;
    text-align: center;
    background-color: black;
    margin: 0px;
    padding: 10px 0px;
}

/* Styles for all devices */

@media (max-width: 500px)

@media (min-width: 501px) and (max-width: 800px) 
  
@media (min-width: 801px) 
