.background {
    position: fixed; /* Change from absolute to fixed */
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0, 39, 235, 0.7), rgba(0, 238, 255, 0.7)); /* Adjusted opacity */
    display: flex;
    flex-grow: 1;
    z-index: -1;
}

.background div {
    position: absolute;
    border-radius: 100%;
    height: 0;
    filter: blur(240vw);
    opacity: 0.4;
}

.background div:nth-child(1) {
    background: linear-gradient(132deg, #1FCFC3 0.00%, #1F91CF 100.00%);
    width: 47%;
    padding-top: 47%;
    left: 35%;
    top: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.background div:nth-child(2) {
    background: linear-gradient(132deg, #47e341 0.00%, #fa00b7 100.00%);
    width: 29%;
    padding-top: 29%;
    left: 52%;
    top: 5%;
    transform: translateX(-50%) translateY(-50%);
}

.background div:nth-child(3) {
    background: linear-gradient(132deg, #3e4d37 0.00%, #9db0b 100.00%);
    width: 72%;
    padding-top: 72%;
    left: 53%;
    top: 45%;
    transform: translateX(-50%) translateY(-50%);
}


#menu {
	background: #0099CC;
	background: linear-gradient(to bottom,  #00ABE4,  #0056F3);
	height: 69px;
	border-radius: 0px;
}
#menu ul, #menu li {
	margin: 0 auto;
	padding: 0;
	list-style: none
}
#menu ul {
	width: 100%;
	text-align: center;
}
#menu li {
	display: inline-block;
	position: relative;
}
#menu a {
	display: block;
	line-height: 69px;
	padding: 0 14px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 20px;
	text-transform: uppercase;
}
#menu a.dropdown-arrow:after {
	content: "\25BE";
	margin-left: 5px;
}
#menu li a:hover {
	color: #0C3FCC;
	background: #D6FFF5;
}
#menu input {
	display: none;
	margin: 0;
	padding: 0;
	height: 69px;
	width: 100%;
	opacity: 0;
	cursor: pointer
}
#menu label {
	display: none;
	line-height: 69px;
	text-align: center;
	position: absolute;
	left: 35px
}
#menu label:before {
	font-size: 1.6em;
	color: #FFFFFF;
	content: "\2261"; 
	margin-left: 20px;
}
#menu ul.sub-menus{
	height: auto;
	overflow: hidden;
	width: 170px;
	background: #213044;
	position: absolute;
	z-index: 99;
	display: none;
}
#menu ul.sub-menus li {
	display: block;
	text-align: left;
	width: 100%;
}
#menu ul.sub-menus a {
	color: #FFFFFF;
	font-size: 16px;
}
#menu li:hover ul.sub-menus {
	display: block
}
#menu ul.sub-menus a:hover{
	background: #F2F2F2;
	color: #444444;
}
@media screen and (max-width: 800px){
	#menu {position:relative}
	#menu ul {background:#213044;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none;text-align:left;}
	#menu ul.sub-menus {width:100%;position:static;}
	#menu ul.sub-menus a {padding-left:30px;}
	#menu li {display:block;float:none;width:auto;}
	#menu input, #menu label {position:absolute;top:0;left:0;display:block}
	#menu input {z-index:4}
	#menu input:checked + label {color:#FFFFFF}
	#menu input:checked + label:before {content:"\00d7"}
	#menu input:checked ~ ul {display:block}
}




@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Koulen&family=Lato&family=Nunito&family=Playfair+Display:ital@1&family=Prata&family=Raleway:ital,wght@1,100&family=Roboto&family=Roboto+Condensed&family=Teko&display=swap');

.btn{

font-family: Teko;
font-weight: 400;
font-size: 28px;
color: #ffffff;
background: linear-gradient(102deg, #49f3ff 14%, #002ccc 100%);
padding: 10px 29px;
border: 2px solid #0066cc;
box-shadow: rgb(47, 135, 212) 4px -6px 25px 6px;
border-radius: 50px;
transition : 122ms;
transform: translateY(0);
display: flex;
flex-direction: row;
align-items: center;
cursor: pointer;
text-transform: uppercase;
}

.btn:hover{

transition : 122ms;
padding: 10px 45px;
transform : translateY(-0px);
background: linear-gradient(102deg, #49f3ff 14%, #002ccc 100%);
color: #0066cc;
border: solid 2px #0066cc;
}

.shortcuts {
	border-radius: 5px;
	position: fixed;
	left: 10px;
	top: 200px;
	width: 70px;
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	padding: 5px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease-out;
  }



  .shortcuts ul {
	list-style: none;
	padding: 0;
  }

  .shortcuts li {
	margin-bottom: 10px;
  }

  .shortcuts a {
	text-decoration: none;
	color: #007bff;
	font-weight: bold;
  }

  .shortcuts a:hover {
	text-decoration: underline;
  }



