/* 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." */

b {color: #8DF2CF;}
body {background-color: black;}
a:link {color: red;}
a:visited {color: #2abd8a;}
a:hover {color: #E4F7EF;}
a:active {color: blue;}
h1   {font-family: "Lucida Console", "Courier New", monospace; color: #14B883;}
h2   {font-family: "Lucida Console", "Courier New", monospace; color: #8DF2CF;padding-top: 80px;}
h3   {font-family: "Lucida Console", "Courier New", monospace; color: #8DF2CF;padding-top: 80px;}
h4   {font-family: "Lucida Console", "Courier New", monospace; color: #8DF2CF;}
h5   {font-family: "Lucida Console", "Courier New", monospace; color: #8DF2CF; padding-left: 30px;}
p    {font-family: "Lucida Console", "Courier New", monospace; color: #E4F7EF; padding-left: 50px;}

.box { display: grid;
grid-template-columns: 1.25fr 0.75fr;
grid-template-rows: 60px 1fr 200px 150px;
  grid-template-areas:
    "a q"
    "c b"
    "c z"
    "x x";
  align-items: flex-start;
}
.name {
  grid-area: a;
  align-self: flex-start;
}
.pic {
  grid-area: b;
   align-self: center;
}
.subtitle {
  grid-area: a;
  align-self: flex-start;
}
.fluff {
  grid-area: c;
   align-self: flex-start;
}
.contact {
  grid-area: z;
   align-self: auto;
  
}
.maintext {
  grid-area: x;
  align-self: flex-start;
  
}