*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Jura', sans-serif;
}

body {
    color: #fafad2;
    background-image: url(space_sunrise.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

#navbar {
    margin: 5px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    
}

.navbar-brand{
    margin: 5px;
    margin-right: 10px;
    color: whitesmoke;
    font-family: 'Audiowide', cursive;
    font-size: 26pt;
    text-shadow: 2px 2px 8px #fafad2;
}

header span.animated {
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 50px;
    height: 4px;
    width: 4px;
    border-radius: 2px;
    background: #fff;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%       { bottom:5px; }
    25%, 75% { bottom:15px; }
    50%      { bottom:20px; }
    100%     { bottom:0; }
}

header span::before,
header span::after {
  position: absolute;
  top: -23px;
  content: "";
  height: 30px;
  width: 4px;
  border-radius: 2px;
  background: #fff;
}

header span::before {
  left: -10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform:    rotate(-45deg);
  -ms-transform:     rotate(-45deg);
  -o-transform:      rotate(-45deg);
  transform:         rotate(-45deg);
}

header span::after {
  right: -10px;
  -webkit-transform: rotate(45deg);
  -moz-transform:    rotate(45deg);
  -ms-transform:     rotate(45deg);
  -o-transform:      rotate(45deg);
  transform:         rotate(45deg);
}


.wrapper1 {
    background-color: transparent;
    width: 100%;
    height: 100px;
}

.wrapper2 {
    background-color: transparent;
    width: 100%;
    height: 925px;
}

#nasa-logo {
    --animate-duration: 8s;
    --animate-delay: 4s;
}

main {
    margin-top: -130px;
}

section{
    padding: 50px;
    background: rgba(0, 0, 0, 0.70);
    color: #fafad2;
    /* border: 1px solid #fafad2; */
}

h3 {
    color: whitesmoke;
    text-shadow: 2px 2px 8px #fafad2;
    padding: 10px;
    text-align: center;
}

#youtube {
    margin-bottom: 30px;
}

.modal-dialog {
    width: fit-content;
    position: absolute;
    top: 50px;
    right: 100px;
    bottom: 0;
    left: 0;
    z-index: 10040;
    overflow: auto;
    overflow-y: auto;
}

footer {
    align-items: center;
    text-align: center;
}

#nasa-results{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.card {
    flex: 0 0 auto;
    /* min-width: 25rem;
    max-width: 50rem; */
    min-width: 50%;
}
    