<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>С 8 Марта</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<h1>С 8 Марта!</h1>
</div>
</body>
</html>
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
background-color: purple;
background-image: url('название_вашей_картинки.расширение');
background-repeat: repeat;
background-size: 200px;
}
div {
width: 500px;
height: 200px;
color: green;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 24px;
margin: 0 0 10px 0;
font-family: sans-serif;
}
p {
font-size: 16px;
margin: 0;
font-family: sans-serif;
}