/* Assignment_3_3.css */

/* Body styling */
body {
  background-color: yellow;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* Main heading */
h1 {
  background-color: #ff9933;
  padding: 15px;
  margin: 20px auto;
  width: 60%;
  border-radius: 8px;
  color: #003366;
}

/* Simple 3x3 Table */
table.simple {
  border: 3px solid blue;
  margin: 20px auto;
  border-collapse: collapse;
  width: 60%;
}
table.simple td {
  border: 1px solid blue;
  padding: 10px;
}

/* 3x5 FourThings Table */
table.fourthings {
  border: 3px solid blue;
  border-collapse: collapse;
  width: 90%;
  margin: 20px auto;
  background-color: #ffffff;
}
table.fourthings th, table.fourthings td {
  border: 1px solid blue;
  padding: 10px;
}
table.fourthings th {
  background-color: #3399ff;
  color: white;
}
table.fourthings img {
  width: 100px;
  height: auto;
}

/* Link styling */
a {
  color: blue;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  color: red;
}
