html, body {
  height: 100%;
  margin: 0;
  background-color: #ffb2ec; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center; 
  align-items: center;    
  margin: 0;
  height: 100vh;
  background-image: url('ssh://devweb/home/mcc33707/public_html/exam2/how-to-lose-a-guy-in-10-days.jpg'); 
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.wrapper {
  width: 90%;
  max-width: 1000px;
  background-color: #f9ffd5;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
header {
  background-color: #f9ffd5; 
  color: #ff5cd4;
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  padding: 15px;
}
nav {
  background-color: #e3ff43;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
nav li {
  margin: 0 20px;
}
nav a {
  display: block;
  padding: 14px 20px;
  color: #ff5cd4;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 5px;
}
nav a:hover {
  background-color: #f9ff8a;
  color: #ff5cd4;
  text-decoration: underline;
}
  .shadow-text {
  font-size: 35px;
  color: #f9ff8a;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
main {
  text-align: center;
  padding: 7px;
  background-color: #f9ff8a;
}
.content {
  display: flex;
  align-items: flex-start;
}
.content img {
  width: 200px; 
  height: auto;
  border: 3px solid black;
  margin-right: 20px;
}
.content p {
  font-size: 18px;
  line-height: 1.6;
}
table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  text-align: center;
  font-family: Arial, sans-serif;
}
table, th, td {
  border: 2px solid #ff5cd4;
}
th {
  background-color: #f2ff42;
  color: #ff00d0;
  padding: 10px;
}
td {
  padding: 8px;
}
table tr:nth-child(odd) {
  background-color: #ffffce;
}
footer {
  background-color: #f9ffd5;
  color:#ff5cd4;
  text-align: center;
  padding: 15px 0;
  font-size: 75%;
  margin-top: 30px;
}