Guys, I ran into a problem with the header section design. Apparently, the image and the gradient should be used, but it’s not what is shown on the layout.
Please help with the problem
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="normalize.css"> <title>Drone Zone</title> </head> <body> <header> </header> </body> </html> body { margin: 0; padding: 0; } header { width: 100%; height: 2500px; background: url(images/Layer4copy.png) no-repeat center center, linear-gradient(to right, rgb(203, 0, 53), rgb(224, 105, 53)); background-size: cover; } 
