﻿body {
      color: white;
}
#landing_page {
    display: grid;
    grid-template-columns: 35% 65%;
    width: 100%;
    height: 100%;
}

 /* unvisited link */
a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: white;
} 

#greeting_container {
    padding: 2em;
    align-content: center;
    background-color:  rgba(32, 32, 32, 0.15);
    backdrop-filter: blur(2px) saturate(180%);
    box-shadow: 10px 0px 10px 0px #fff3;
    position: relative;
    justify-content: space-around;
    height: auto;
    z-index: 1;
}

#globe_container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #161616;
    z-index: 0;
    #globe {
        width: 500px;
        height: 500px;
    }
    .starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    }
    .star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    }
}

/* Animation */
@keyframes blink {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

h1 {
    margin: 0px;
}