/* why are you looking though my stuff!! */

body {
  background: #c0c0c0;
  font-family: "Verdana", "Tahoma", sans-serif;
  color: black;
  margin: 0;
  padding: 0;
  background-image: url("https://www.transparenttextures.com/patterns/gray-floral.png"); /* tiled bg */
}

h1, h2 {
  background-color: navy;
  color: white;
  padding: 10px;
  border-bottom: 3px double silver;
  text-align: center;
  text-shadow: 1px 1px 0px black;
  margin-top: 0;
}

p, ul, li, a {
  font-size: 14px;
}

a {
  color: blue;
  text-decoration: underline;
}

a:hover {
  color: red;
  background-color: yellow;
}

img {
  display: block;
  margin: 20px auto;
  border: 3px ridge silver;
  width: 300px;
  height: auto;
}

ul {
  list-style-type: square;
  padding-left: 40px;
}

audio {
  display: block;
  margin: 20px auto;
  background-color: #f0f0f0;
  border: 2px inset gray;
  padding: 5px;
}

p {
  background-color: white;
  padding: 10px;
  margin: 15px auto; /* Centers the box */
  border: 2px outset #aaa;
  box-shadow: 2px 2px 5px #666;
  max-width: 600px;
  text-align: center; /* Centers the text inside */
}

body {
  max-width: 800px;
  margin: 0 auto;
  border: 4px groove #999;
  padding: 20px;
  box-shadow: 0px 0px 15px #333;
}

.aqua-button {
  display: inline-block;
  background: linear-gradient(to bottom, #aee0ff 0%, #38a1db 100%);
  border: 2px solid #1c6ea4;
  border-radius: 20px;
  padding: 10px 25px;
  font-family: "Verdana", sans-serif;
  font-size: 14px;
  color: white !important;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 2px 5px rgba(0,0,0,0.3);
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
}

.aqua-button:hover {
  background: linear-gradient(to bottom, #b3e4ff 0%, #4cb0e5 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 3px 7px rgba(0,0,0,0.4);
  color: white !important;
}

.button-container {
  text-align: center;
  margin-top: 20px;
}

