body {
  background-color: darkslategrey;
  position: relative;
  
}

.sign {
  background-color: transparent;
  width: 500px;
  height: 300px; /* 250 */
  margin: 40px auto;
  text-align: center;
  border-radius: 10px;
  border: 15px double #800000; /* red */
  position: relative;
  box-shadow: -1px 0px 106px 1px rgb(237,12,12);
}

#neon {
  margin-top: 35px;
  font-size: 6rem;
  color: transparent;
  -webkit-text-stroke-width: 6px;
  -webkit-text-stroke-color: #daa520; /* gold */
  font-family: 'Futura', sans-serif;
  text-shadow: 0 -40px 100px, 0 0 2px, 0 0 1em #daa520, 0 0 0.5em #ff4444, 0 0 0.1em #ff4444;
   animation: blink linear infinite 10s;
}

@keyframes blink {
0% { opacity: 0; }
      
  // flicker
  5%  { opacity: 0; }
  6% { opacity: 1; }
  11% { opacity: .4; }
  11.25% { opacity: .6; }
  11.5% { opacity: .4; }
  18% { opacity: 1; }
  18.5% { opacity: .9; }
  22% { opacity: 1; }
  
   // flicker
  38.5% { opacity: 1; }
  39% { opacity: .8; }
  42% { opacity: 1; }
  
  // flicker
  60% { opacity: 1; }
  60.5% { opacity: 0; }
  62% { opacity: 0; }
  63% { opacity: .2; }
  63.25% { opacity: 0; }
  65% { opacity: 1; }
  
  // flicker
  73% { opacity: 1; }
  75% { opacity: .8; }
  79% { opacity: 1; }
  
  100% { opacity: 1; }
}

.assignments {
	float: left;
	margin-left: 5%;
	margin-top: 5rem;
}

#assign {
	text-align: center;
	font-size: 3rem;
	color: #800000;
	font-family: 'Futura', sans-serif;
}

#projects {
	text-align: center;
	text-decoration: none;
	color: #daa520;
}

#choice{
	font-size: 3rem;
	color: #800000;
	font-family: 'Futura', sans-serif;
}

a {
	text-decoration: none;
	color: #daa520;
}

a:hover {
	color: #b8860b
}

.choices {
	float: right;
	margin-top: 5rem;
	margin-right: 5%;
}

ul {
	list-style: none;
	display: inline;
	text-decoration: none;
	color: #daa520;
	text-align: center;
}

#your_color {
	color: #800000;
}

.pic {
	;
}

#pic_1 {
	border-radius: 5%;
	text-align: left;
}

#pic_2 {
	position: absolute;
	right: 0%;
}

/* Style The Dropdown Button */
.dropbtn {
    background-color: #daa520;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
	font-family: 'Futura', sans-serif;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	padding-left: 33%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #800000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: darkslategrey;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	font-family: 'Futura', sans-serif;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #daa520}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #daa520;
}
/* dropdown finish */