Tell us what’s happening:
hola,no encuentro mi error y no me permite avanzar.me ayudan?
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Moon Orbit</title>
</head>
<body>
<div class="space">
<div class="earth"></div>
<div class="orbit">
<div class="moon"></div>
</div>
</div>
</body>
</html>
/* file: styles.css */
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.space {
height: 200px;
width: 200px;
position: relative;
}
.earth {
height: 100px;
width: 100px;
position: absolute;
top: 50%;
left: 50%;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36
Challenge Information:
Build a Moon Orbit - Build a Moon Orbit