diff --git a/public/Solarium-0.9.2-main.jpg b/public/Solarium-0.9.2-main.jpg
new file mode 100644
index 0000000..5c0385b
Binary files /dev/null and b/public/Solarium-0.9.2-main.jpg differ
diff --git a/public/earth-2.png b/public/earth-2.png
deleted file mode 100644
index 39ce095..0000000
Binary files a/public/earth-2.png and /dev/null differ
diff --git a/src/components/InfoCard/index.js b/src/components/InfoCard/index.js
index 97a01b3..0da1b51 100644
--- a/src/components/InfoCard/index.js
+++ b/src/components/InfoCard/index.js
@@ -29,7 +29,7 @@ const InfoCard = () => {
{planetStats.name}
+ onClick={returnToMainMenu}>Back
Average Orbital Distance: {convertKmToAU(planetStats.distance)} AU
diff --git a/src/components/Navigation/Navbar.css b/src/components/Navigation/Navbar.css
index 8c00b00..4fd3da3 100644
--- a/src/components/Navigation/Navbar.css
+++ b/src/components/Navigation/Navbar.css
@@ -29,7 +29,7 @@
color: #e8ab8c;
font-size: 1.3em;
font-weight: bold;
- margin-right: clamp(20px, 50px, 50px);
+ margin-right: clamp(20px, 10%, 50px);
transition: 200ms all ease-out;
animation: 2s navbar-slide linear;
font-family: 'SpaceFont';
diff --git a/src/components/SolarSystem/Size.css b/src/components/SolarSystem/Size.css
index 29c21f9..138f864 100644
--- a/src/components/SolarSystem/Size.css
+++ b/src/components/SolarSystem/Size.css
@@ -67,19 +67,22 @@
height: calc(58232vw / 4000);
width: calc(58232vw / 4000);
background: var(--saturn-background);
- transform: rotate(225deg)
+ transform: rotate(225deg);
+ box-shadow: inset 8px -3px 20px 10px black;
}
.uranus-size {
height: calc(25362vw / 4000);
width: calc(25362vw / 4000);
background: var(--uranus-background);
- transform: rotate(225deg)
+ transform: rotate(225deg);
+ box-shadow: inset 5px -5px 19px 5px black;
}
.neptune-size {
height: calc(24622vw / 4000);
width: calc(24622vw / 4000);
background: var(--neptune-background);
- transform: rotate(225deg)
+ transform: rotate(225deg);
+ box-shadow: inset 5px -5px 19px 5px black;
}