Здравствуйте, я новичок в HTML, хочу отцентровать видео, div предал размеры body и в div вписал видео.
body{
background-image: url(https://www.tokkoro.com/picsup/5400282-anime-hd-4k-night-scenery.jpg);
background-size: cover;
background-attachment: fixed;
background-position: center center;
}
.video{
width: 30%;
height: 100vh;
margin: 0 auto;
display: block;
text-align: center;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>the end.</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image" href="https://yt3.ggpht.com/a/AGF-l78FVXS9EAPSsm1xMnreqDKnKy7kbSbyn74slA=s900-c-k-c0xffffffff-no-rj-mo">
</head>
<body>
<div class="video">
<iframe width="560" height="315" src="https://www.youtube.com/embed/H1Vnys_GC4Y?controls=0&start=7;autoplay=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>