/* Reset CSS */ * { margin: 0; padding: 0; box-sizing: border-box; } body { background: url('https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png'); font-family: Arial, sans-serif; line-height: 1.6; color: white; /* Set font color to white */ } .container { display: flex; } .container-1 { background: url('https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png'); width: 250px; height: 300px; background-repeat: no-repeat; background-size: contain; border: 0.25rem solid black; margin-left: 10%; margin-top: 5%; margin-right: 10%; } header { background-color: #333; color: #fff; padding: 1em; } header h1 { font-size: 2em; } nav ul { list-style-type: none; } nav ul li { display: inline; margin-right: 20px; } nav ul li a { color: #fff; text-decoration: none; } main { padding: 20px; } section { margin-bottom: 40px; } footer { background-color: #fff; color: #fff; text-align: center; padding: 1em; }