Build a Moon Orbit - Build a Moon Orbit

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

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-moon-orbit/66a37f37ef5823a313de8c26.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome back to the forum @camii.sajama92

Did you notice the message in the console?

Failed to load resource: "style.css" is not an available local stylesheet file. Use: "styles.css".

You need to rename the stylesheet with the correct name:

styles.css

Happy coding

ah,es verdad,no la tenia desplegada a la consola,muchas gracias!