I just started learning front end using html & css and i just want to follow a tutorial from youtube and i have problems right from the start. I'm trying to put a background img for the website, but it dosen't show up and i found that nothing works on this div, even if i just put a background color. My code looks like this:
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My web</title>
<link rel="stylesheet" href="style.css">
</head>
<style>
*{
margin: 0;
padding: 0;
}
.container{
width: 100vh;
height: 100%;
background-image: url(Images/background.png);
background-position: center;
background-size: cover;
padding-left: 5%;
padding-right: 5%;
box-sizing: border-box;
position: relative;
}
</style>
<body>
<div class="container">
</div>
</body>
</html>```