body {
  margin: 0 auto;
  max-width: 56em;
  padding: 1em 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: blue;
}

.grid {
  
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: minmax(150px, auto);
  grid-gap: 1em;
  
}

.module {
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;

  /* flex fallback */
  margin-left: 5px;
  margin-right: 5px;
  flex: 1 1 200px;

  border: 2px black solid;
}

@supports (display: grid) {
  .module {
    margin: 0;
  }
}

.module:hover {
  box-shadow: 0 3px 10px yellow;
}

.aboutmodule {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  overflow: auto;
  
  padding: 7px;
  
  /* Flex Fallback */
  margin-left: 5px;
  margin-right: 7px;
  flex: 1 1 200px;

  border: 2px black solid;
  white-space: normal;
}

@supports (display: grid) {
  .aboutmodule {
    margin: 0;
  }
}

.aboutmodule:hover {
  box-shadow: 0 3px 10px yellow;
}

.listheader {
  list-style-type: none; 
  text-indent:-20px;
  margin-bottom: 5px;
}


@media only screen and (max-width: 950px) {
  h1 {
    text-align: center;
  }

  body {
    padding: 0 14px;
  }
}

/* changing text time */

.about::after{
    content:'about me';
}
.about:hover::after{
    content:'woah woah ya little creep';
  
}

.ceevee::after{
    content:'cee vee';
}
.ceevee:hover::after{
    content:'shoutout andy and mehdi!!';
  
}

.call::after{
    content:'open call';
}
.call:hover::after{
    content:'beep borp bloop';
  
}

.internet::after{
    content:'niceinter.net';
}
.internet:hover::after{
    content:'why my site looks like this!!';
  
}

.abridged::after{
    content:'abridged.blog';
}
.abridged:hover::after{
    content:'microblogging 2 da max';
  
}

.email::after{
    content:'canisendyouan.email';
}
.email:hover::after{
    content:'email is not objectively bad!!';
  
}

.online::after{
    content:'particularly.online';
}
.online:hover::after{
    content:'aka my screenshot dump';
  
}

.tomato::after{
    content:'tomato.supply';
}
.tomato:hover::after{
    content:'a bit of ketchup on my stuff';
  
}

.experiments::after{
    content:'experiments';
}
.experiments:hover::after{
    content:'i do not get javascript';
  
}

.back::after{
    content:'go back';
}
.back:hover::after{
    content:'⤾';
  
}

::selection {
  color: white;
}