/* STYLING FOR THE EXPLORE PAGE */


body {
    height: 100vh;
    background-color: black;
    color: white;
  }

nav {
    color: white;
    background-color: rgba(255,127,80,0.8) !important;

}

.title-bar {
    background-color: rgba(255,127,80,0.8) !important;
}

ul {
    list-style-type: none !important;
}

a {
    color: white !important;
}

main {
    margin-top: 3em;
}

img.selected {
    border: 3px solid green;
}
img:hover {
    cursor: pointer;
}

.roverexplain {

    border: solid;
    border-color: coral;
    background-color: rgba(255, 127, 80, 0.5);
    border-radius: 25px;
    margin-left: 20em;
    margin-right: 20em;
}

#explore-date {
    color: white;
    padding: 1em;
    width: 20em;

    margin-left: 10em;
    margin-right: 10em;

}

button {
    color: white;
    background-color: coral;
    padding: 1em;
    width: 10em;
    border-radius: 25px;
    margin: 1em;
}

button:hover {
    cursor: pointer;
    color: coral;
    background-color: white;
}

button.save {
    background-color: green;
}

button.save:hover {
    color: green;
    background-color: white;
}

button.close-button {
    background-color: white;
    padding: 1px;
    width: 30px;
    margin: 1px;
}

.reveal {
    color: black;
}

.btns {
    margin-bottom: 2em;
}

@media only screen and (max-width: 1200px) {
    
    .roverexplain {
        margin: 2em;
    }
}

@media only screen and (max-width: 770px) {
    .roverexplain {
        margin: 2em;
    }
}

#bg {
    width: 100%;
    height: 100%;
    opacity: 0;
    background: url(../images/mars.jpg) no-repeat center center fixed !important; 
    opacity: 0;
    -webkit-background-size: cover !important;
    -moz-backgr5ound-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important; 
  }

  .button:hover, .button:focus {
    color: rgba(255,127,80,0.8);
   }