/* finalproject.css */

/* Global Styles */
body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  color: white;
}

a {
  color: white;
  text-decoration: none;
}

/* Page Styles */
header {
  background-color: #333;
  padding: 10px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  font-size: 16px;
}

main {
  padding: 20px;
}

figure {
  margin: 20px 0;
  text-align: center;
}

img {
  width: 100%;
  height: auto;
  max-width: 300px; /* Adjust the desired width */
  max-height: 200px; /* Adjust the desired height */
}

.video-container {
  margin: 20px 0;
  text-align: center;
}

.video-container iframe {
  width: 320px;
  height: 180px;
}

.simple-list {
  list-style-type: disc;
  padding-left: 20px;
}

.contact-form {
  margin-top: 20px;
}

label {
  display: block;
  margin-top: 10px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid white;
  background-color: #333;
  color: white;
}

input[type="submit"] {
  background-color: #333;
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: white;
  color: black;
}
