@font-face {
  font-family: 'Carter One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''),
       url('../fonts/carter-one-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/carter-one-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/carter-one-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/carter-one-v12-latin-regular.svg#CarterOne') format('svg'); /* Legacy iOS */
}

body {
  color: #ffffff;
  font-family: "Arial";
  background-color: #000000;
  background-image: url("/images/starfield.png");
}

.header {
padding-bottom: 20px;
}

.content {
  background: rgba(23,39,66,0.7);
  border: 3px solid #02a2c6;
  padding: 20px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}

img.logo {
  display: block-inline;
  float: left;
  width: 200px;
  height: 67px;
}


.menu {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  margin-left: 50px;
}

.dropbtn {
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown a {
  display: block;
  color: #6ae6fe;
  font-family: 'Carter One';
  border-radius: 45px 15px 45px 15px;
  -moz-border-radius: 45px 15px 45px 15px;
  -webkit-border-radius: 45px 15px 45px 15px;
  padding: 2px 20px 2px 20px;
  border: 3px solid #02a2c6;
  text-decoration: none;
  display: inline-block;
  background: rgba(23,39,66,0.7);
  font-size: 1em;
  margin-bottom: 2px;
}

.dropdown a:hover {
  color: #ffffff;
  background: linear-gradient(130deg, rgba(41,71,119,0.7) 35%, #2989d8, rgba(41,71,119,0.7) 50%);
  background-size: 300% 100%;
  animation: FutureGlow 4s linear infinite;
}

@keyframes FutureGlow {
  0%{background-position:0% 50%}
  100%{background-position:100% 50%}
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 350px;
  z-index: 1;
}

.dropdown-content a {
  display: block;
}

.dropdown-content a:hover {}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
}

h2 {
  background: rgba(23,39,66,0.7);
  border: 3px solid #02a2c6;
  padding: 7px 10px 7px 10px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
