/* Terrible, terrible CSS. I know I'm a programmer but please forgive this. */
:root {
  --default-text: #f2f2f2;
  --default-link: #00a3ff;
  --default-highlight: #f03;
  --default-secondary: #111;
  --default-deselect: #999;
}

.heading-display {
  font-family: "Tomorrow", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 10em;
}


.heading-default {
  font-family: "Tomorrow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4em;
}

body {
  background-color: black;
  color: var(--default-text);
  font-family: Verdana;
  
}
/* Add a black background color to the top navigation */
/* TOP BAR NAVIGATION*/

.topnav {
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  background-color: black;
  overflow: hidden;
  display: flex; 
  width:100%;
  justify-content: space-between;
  z-index: 9999;
}


/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  flex-grow: 1;
  text-align: center;
  color: var(--default-deselect);
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: var(--default-highlight);
  color: var(--default-text);
}

/* Add a color to the active/current link */
.topnav .active {
  color: var(--default-text);
}

a {
  color: #00a3ff; /* Replaces default blue */
}

/* SECTION 1: HEADING/M4H */
.heading {
  text-align: center;
  top: 0%;
  height: 120vh;
  z-index:1;
  overflow: hidden 
}

.heading::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 120vh;
  min-height: 500px;
  background-image: url("static.gif");
  background-size: 100% 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-clip: padding-box;
  opacity: 0.3; /* Set your desired transparency */
  z-index: -1; /* Pushes the image behind the content */
}
.manifesto {
  display:flex;
}
.manifesto-body {
  padding: 0px 5em; 
  width: 66%;
}
.extraneous {
  top: 50px;
  background: #FF0033;
  background: linear-gradient(0deg,rgba(255, 0, 51, 1) 0%, rgba(105, 16, 42, 1) 50%, rgba(0, 0, 0, 1) 100%);
  flex: 2;
}