body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black; /* Set the background color to black */
    color: white; /* Set the text color to white */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

header {
    background-color: purple; /* Set the header background color to purple */
    color: white; /* Set the header text color to white */
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: white; /* Ensure navigation links are white */
    text-decoration: none;
    padding: 5px 10px; /* Add padding for button-like appearance */
    border: 2px solid transparent; /* Add border for hover effect */
    transition: transform 0.3s, border-color 0.3s; /* Smooth transition for transform and border color */
}

header nav ul li a:hover {
    transform: scale(1.1); /* Increase size on hover */
    border-color: white; /* Change border color on hover */
}

main {
    display: flex;
    padding: 20px;
    background: url('images/stars.jpg') repeat; /* Maintain the background image if needed */
}

.text-content {
    flex: 1;
    margin-right: 20px; /* Increased margin to add more space between text and images */
}

.image-container {
    max-width: 500px; /* Increased max-width to make the images bigger */
    text-align: center;
}

.rotating-image img {
    width: 100%;
    height: auto;
}