/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  color: white;
  font-family: Verdana;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 50% 1fr;
  gap: 1.5rem;
}

.content {
  grid-column: 2;
  padding: 1.5rem;
  text-align: center;
	box-sizing: border-box;
  padding: 1rem;              /* space between text and border */
  border: 1px solid #8added;     /* softer than pure black */
  border-radius: 8px;         /* rounded corners */
}

.sidebar {
  grid-column: 3;
  padding: 1rem;
  border: 1px solid #8added;
  max-width: 350px;
  border-radius: 8px; 
}

img {
  image-rendering: optimizeSpeed; 
  image-rendering: -moz-crisp-edges; 
  image-rendering: -o-crisp-edges; 
  image-rendering: -webkit-optimize-contrast; 
  image-rendering: optimize-contrast; 
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: pixelated;
}

a:link {color: #8added;text-decoration: none;}
a:visited {color: #6c8cc4;text-decoration: none;}
a:hover {color: #FFA500;}
a:active {color: #fffeb5;}
