html {
    height: 100%;
}
body {
    margin: 0;
    background-color: black;
    color: white;
    height: 100%;
    background-color: black;
    background: radial-gradient(circle at 20% 30%, #6e028f18, transparent 70%),
                radial-gradient(circle at 70% 60%, #00ffff07, transparent 70%),
                radial-gradient(circle at center, #000000, #1a1a1a);
    font-family:Georgia, 'Times New Roman', Times, serif;
}
.hide-overflow {
    overflow: hidden;
}
@keyframes twinkle {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}
.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
    animation: twinkle 5s infinite;
}
.navbar {
  display: flex;
  flex-direction: row;
  color: white;
  position: sticky;
  /* margin-left: 100px; */
  padding: 0;
  list-style-type: none;
}
.nav-item {
  text-decoration: none;
  color: inherit;
  padding: 5px;
  font-size: 20px;
  background-color: #000000;
  margin: 5px 5px 0 5px;
}
.nav-selected {
  border-bottom: white 1px solid;
}
.text-container {
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 90%;
    justify-content: space-around;
    text-align: center;
}
h4,h5,h6 {
    color: rgba(255,255,255,.7);
    text-align: center;
}
h4 {
    margin: 0;
}
.title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 9vw;
    color: rgba(255,255,255,.9);
}
.text-container h3 {
    font-size: 32px;
    margin: 5px;
    color: rgba(255,255,255,.8);
    vertical-align:middle;
}
.hazards {
    text-align: center;
}
.late-summer {
    display: flex;
    flex-direction:row;
    justify-content: space-around;
    flex-wrap: wrap;
}
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;

}
.notify {
    background: radial-gradient(ellipse closest-side at center, #000000 50%, #1a1a1a00 100%);
    border: 0;
    color: inherit;
    padding: 15px;
    border-radius: 5px;
    font-size: 24px;
    transition-duration: 5;
    color: #ffffffc0;
}
.notify:hover {
    background: radial-gradient(ellipse closest-side at center, #000000 80%, #1a1a1a00 100%);
}
.insta {
    background: radial-gradient(ellipse closest-side at center, #000000 50%, #1a1a1a00 100%);
}
.insta:hover {
    background: radial-gradient(ellipse closest-side at center, #000000 80%, #1a1a1a00 100%);
}
.info-paragraph {
  font-size:24px;
  margin: 5px 10vw;
}
a {
  color:inherit;
}
.company-list {
  font-size: 24px;
  list-style-type: none;
  padding: 0;
}
.left-align {
  text-align: left;
}
.right-align {
  text-align: right;
}
.production li {
  display: flex;
  justify-content: space-between;
  margin: 5px 20vw;
  border-bottom: white dashed 1px;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}