@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Roboto+Condensed&display=swap');

#topMenu {
height: 60px;
width: 800px;
}
#topMenu ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}
#topMenu ul li {
color: #ffffff;
float: left;
line-height: 45px;
vertical-align: middle;
text-align: center;
position: relative;
}
.menuLink {
color: #f0f0f0;
text-decoration:none;
display: block;
width: 120px;
font-size: 20px;
font-weight: normal;
font-family: 'Oswald', sans-serif;
}
.submenuLink {
text-decoration:none;
display: block;
width: 120px;
font-size: 16px;
font-weight: lighter;
font-family: 'Roboto Condensed', sans-serif;
}

.topMenuLi:hover .menuLink {
color: #ffd100;
background-color: rgba(88, 88, 91, 0.7); 
// background-color: #58585b;
border: solid 1px black;
}
.submenuLink {
color: #ffffff;
background-color: rgba(240, 240, 240, 0.9); 
// background-color: #f0f0f0;
border: solid 1px black;
margin-top: -1px;
}
.longLink {
width: 120px;
}
.submenu {
position: absolute;
height: 0px;
overflow: hidden;
transition: height .2s;
-webkit-transition: height .2s;
-moz-transition: height .2s;
-o-transition: height .2s;
}
.topMenuLi:hover .submenu {
height: 250px;
}
.submenuLink:hover {
color: #ffd100;
background-color: rgba(120, 120, 123, 0.7); 
// background-color: #78787b;
}

header {
position: fixed;
top: 0;
left: 0;
right: 0;

height: 35px;
padding: 1rem;
color: white;
background-color: rgba(255, 209, 0, 0.9);
// background: #c0c0c0;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
}

h2 {
padding-top: 65px;
margin: 0;
font-size: 35px;
font-family: 'Oswald', sans-serif;
}

h3 {
padding-top: 30px;
padding-bottom: 5px;
margin: 0;
font-size: 25px;
font-family: 'Roboto Condensed', sans-serif;
}

main {
padding: 1rem;
height: 100%;
}

body {
background: #ffffff;
}

body, html {
height: 100%;
}

p, ol, ul {
padding-top: 0px;
font-size: 20px;
font-weight: lighter;
font-family: 'Roboto Condensed', sans-serif;
}

hr.bdr {border:none; border:1px double grey;
}

.parent{
    width: 90%;
    margin: 10px auto;
    display: flex;
}

.first {
    border: 0px;
    flex:1;
    width:30%;
    box-sizing: border-box;
}

.second{
    border: 0px;
    flex:1;
    margin-left: 5%;
    width:30%;
    box-sizing: border-box;
}

.third{
    border: 0px;
    flex:1;
    width:30%;
    box-sizing: border-box;
}

a { 
text-decoration: none
}
a:link {
  color: #000000;
}
a:visited {
  color: #000000;
}
a:hover {
  color: #FFD100;
}
a:active {
  color: #000000;
}

.neontext {
  color: #fff;
  text-shadow:
      0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #0fa,
      0 0 82px #0fa,
      0 0 92px #0fa,
      0 0 102px #0fa,
      0 0 151px #0fa;

  animation: flicker 1.5s infinite alternate;     
}

/* Flickering animation */
@keyframes flicker {
    
  0%, 18%, 22%, 25%, 53%, 57%, 100% {

      text-shadow:
      0 0 4px #c0c0c0,
      0 0 8px #f0f0f0,
      0 0 15px #f0f0f0,
      0 0 32px #ffd100,
      0 0 72px #ffd100,
      0 0 82px #ffd100,
      0 0 92px #ffd100;
  
  }
  
  20%, 24%, 55% {        
      text-shadow: none;
  }    
}