:root {
		--text: #ffffff;
		--accent: #001d80;
		--bg: rgba(75, 137, 255, 0);
		--gradientTop: rgba(75, 137, 255, 0.27);
		--gradientBottom: rgba(75, 137, 255, 0.58);
	}

body {
  margin: 0;
    font-family: 'MS PGothic', sans-serif;
    color:white;
  }
  
/*Everything goes inside here.*/
.wrapper {
  width: 925px;
  margin: 0 auto;
  }
  
.sidebar-img, .footer, .title, .links, .box {
  margin-top: 1px;
  }
  
.title, .links, .footer {
  text-align: center;
  }

  
.links li {
  display: inline-block;
  }
  
.links li:before, .links li:after {
  letter-spacing: 0.1em;
  }
  
/*Basic box code that is used for all content boxes on the page.*/
.box {
  padding: 0.5em 1em;
    background-color: rgba(0, 0, 0, 0.86);
  }

  
/*Prevent image overflow.*/
.box img, .sidebar img {
  max-width: 100%;
  height: auto;
  }
  
/*Wrapper for the sidebar.*/
.sidebar {
  width: 220px;
    margin: 2px;
  float: left;
  }
  
/*Container for the sidebar image.*/
.sidebar-image {
  border: 0px solid rgba(0, 0, 0, 0);
  }
  
/*Remove extra padding line at the bottom of the image.*/
.sidebar-image img {
  display: block;
  }
  
/*This is where the title, navbar, and main content all go.*/
.main-wrapper {
  margin-left: 225px;
  }
  
/*Two columns by default. The "single-column" class can be added to make it one column.*/
.main {
  columns: 2;
  column-gap: 1px;
  }
  
/*Make sure boxes don't spread over multiple columns.*/
.main .box {
  display: inline-block;
  }

nav a {
	display: block;
    margin: -6px;
	background: linear-gradient(to right,var(--bg),var(--gradientBottom));
	padding: 2px 7px;
	text-decoration: none;
    border-radius: 10%
}
nav a:link, nav a:visited { 
	color: var(--text);
}
nav a:hover, nav a:focus {
	background: linear-gradient(to right,var(--bg), var(--gradientBottom), var(--gradientTop));
}
/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}
a:hover, a:focus {
	font-style: italic;
}

blockquote {
    background-color: rgba(75, 137, 255, 0.6);
    padding: 7px;
    margin: 1em 0;
    border-radius: 10px;
}
  
.single-column {
  columns: 1;
  }
  
.footer {
  margin-bottom: 25px;
  }

.center-text {
    text-align: center;
}

.padded-img {
	margin: 10px;  
}

#bigword {
	font-family: 'Courier New', 'MS PGothic', sans-serif;
	font-size: clamp(5rem, calc(7vw + 1rem), 6rem);
	text-align: center;
	line-height: 0.7;
	letter-spacing: -0.45rem;
}

#medword {
	font-family: 'Courier New', 'MS PGothic', sans-serif;
	font-size: clamp(2rem, calc(7vw + 1rem), 3rem);
	line-height: 0.7;
	letter-spacing: -0.35rem;
}

.crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
  
@media(max-width:915px) {
  .wrapper {    
    width: 95%;
    }
    
  .main-wrapper {
    width: calc(100% - 225px);
    }
  }
  
@media (orientation: portrait), (max-width: 480px) {
  .wrapper {
    width: 100%;
    }
  
  .main-wrapper, .sidebar, .footer {
    margin: 0 auto;
    width: 90%;
    }
  
  .sidebar {
    float: none;
    display: block;
    }

  .sidebar-image {
    margin: 0 auto;
    width: 33%;
    margin-top:25px;
    }

  .sidebar .sidebar-image img {
    width: 100%;
    }
    
  .footer {
    margin-bottom: 25px;
    }
  
  }