/*
Color Pallete: Dark
#071C21 - Background Dark Teal
#153B44 - Dark Teal
#2D6E7E - Teal
#C6DE41 - Yellow
*/

/*
Color Pallete: Sunset
#511845 - Background Dark Purple
#900C3F - Sweet Dark Purple
#C70039 - Pink Red
#FF5733 - Orange
*/
/*
$background-color: #511845;
$secondary-color: #900C3F;
$tertiary-color: #C70039;
$accent-color: #FF5733;
*/


html, body {
    width:  100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    text-shadow: 3px 3px 3px #808;
}

h1 {
    color: #FF5733;
    font-size: 35px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: normal;
    margin-top: 5px;
    text-shadow: 3px 3px 3px #808;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    z-index: -10;
    position: fixed; /* Fix the canvas to cover the entire viewport */
    top: 0;
    left: 0;
}

div.navlinks {
    background-color: #511845;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 100px;
    padding: 10px 10px;
    min-height: 30px
    box-shadow: 0 0 100px 50px #00ff94;
    transition: border-color 0.35s;
}

div.navlinks div:hover {
	border-color: #2c3e50;
	background-color: #81296f;
	font-size: 30px;
}

div.navlinks:link, div.navlinks:visited {
    color: #900C3F;
    text-decoration: none;
    font-weight: bold;
}

div.navlinks a {
	padding-left: 30px;
	padding-right: 30px;
	font-size: 20px;
	margin-top: 21px;
	margin-bottom: 10px;
}


div.links div {
	border-radius: 30px;
	margin-top: 4px;
	margin-bottom: 4px;
	background-repeat: no-repeat;
	background-position: left;
	background-size: 80px 80px;
	background-position-x: 4px;
	background-color: #511845;
	transition: border-color 0.35s;
	min-height: 170px;
	padding: 10px 10px;
	display: flex;
	flex-direction: column;
	background-position-x: 10px;
	box-shadow: 0 0 10px 5px #00ff94;
}
.links {
    display: inline-flex;
    flex-direction: row;
    width: 90vw;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

div.links a:link {
	border-radius: 0;
	padding: 0;
    width: 400px;
    margin:16px 20px;
}

div.links a:link:hover {
	background-color: transparent;
}

div.links div:hover {
	border-color: #2c3e50;
	background-color: #81296f;
}

div.links p {
	padding-left: 100px;
	font-size: 36px;
	margin-top: 21px;
	margin-bottom: 10px;
}

div.links p.hasdescription {
    color : #FF5733;
	font-size: 28px;
	margin-top: 10px;
}

div.links p.description {
	color: magenta;
	font-size: 20px;
	margin-top: 5px;
}

.container {
  position: relative;
  text-align: center;
  color: white;
  flex: 1;
  width: 100%;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.foot {
    width: 100%;
    z-index: 100;
    background-color: #511845;
    color: #C70039;
    text-align: center;
    padding: 10px; /* Adjusted padding */
    font-size: 15px;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.0;
}

a:link, a:visited {
    color: #900C3F;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #FF5733;
}
