/***************
|  home.css    |
|  07/15/2025  |
***************/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  font-size: 62.5%;
}

html {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-image: url(images/apollo-17a.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom;
  background-size: contain;
  background-color: black;
  text-align: center;
  overflow-x: hidden;
  color: gray;
  margin: auto;
  width: 100%;
  height: 100vh;
  position: relative;
}

/* earthrise2 code */

#earthrise2 {
  position: relative;
  cursor: pointer;
  bottom: -51.75vh; 
  width: 6.354vw;
}

/* message code */

.msg {
  text-shadow: -0.2rem -0.2rem 0.5rem black;
  transform: translateX(-50%);
  letter-spacing: 0.09rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  height: 3.3rem;
  color: #eee;
  width: 40rem;
  position: absolute;
  top: 14%;
  left: 50%;
}

.msg:hover {
  color: turquoise;
}

.msg:active {
  color: turquoise;
  text-shadow: -0.2rem -0.2rem 0.5rem transparent;
}

footer {
  width: 50%;
  background-color: transparent;
  position: absolute;
  left: 0;
  bottom: 0;
}

footer h4 {
  text-shadow: -0.2rem -0.2rem 0.5rem black;
  letter-spacing: 0.15rem;
  color: #eee;
  text-align: left;
  font-size: 18px;
  padding: 0 0 0 2.5rem;
}

/* The next two rules remove 
the dotted lines around links 
and navigation buttons in
Mozilla Firefox. */

:focus {
  outline: none !important;
}

::-moz-focus-inner {
  border: 0 !important;
}