body {
	background-color: #F5F2EC;
	padding-bottom: 10vh;
    font-family: "Gill Sans MT", "Gill Sans", ui-sans-serif, sans-serif;
	font-size: 18px;
	line-height: 1.15;
	text-wrap: pretty;
    background-image: url("drewsoy background.svg");
	background-repeat: repeat;
    background-size: 600px;
    background-attachment: fixed;

}

.header {
	width: 40vw;
	margin: auto;
	padding: 1vw 2vw;
	position: relative;
/*	background-color: #F5F2EC */
}

.links {
  width: 65vw;
  margin: auto;
  padding: 1vw 2vw;
  position: relative;
/*  background-color: #F5F2EC; */

  h2 {
	text-align: center;
  }
}

.header, .links {
  background-color: rgba(245, 242, 236, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* Safari */
  border: thin dashed;
  border-radius: 20px;
}

.links-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 1rem 2rem;
}

a:link {
	color: #537758;
	text-decoration: none;
}

a:visited {
	color: RebeccaPurple;
	text-decoration: none;
}

a:hover {
	color: green;
	text-decoration: underline;
	text-decoration-color: green;
}

.blue {
	a {
		color: SteelBlue;
		text-decoration-color: SteelBlue;
	}
}

@media (max-width: 600px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
  .header {
	  width: 90vw;
	  padding: 1vw;
  }
  .links {
	  width: 90vw;
	  padding: 1vw;
  }
  
  body {
	background-repeat: repeat;
    background-size: 200px;
    background-attachment: fixed;
  }
}