body {
  font-family: "M PLUS 1p", sans-serif;
  cursor: default;
  -webkit-animation: fadein 1.5s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1.5s; /* Firefox < 16 */
  -ms-animation: fadein 1.5s; /* Internet Explorer */
  -o-animation: fadein 1.5s; /* Opera < 12.1 */
  animation: fadein 1.5s;
}

.container {
  width: 90vw;
  margin: 0 auto;
  margin-top: 25px;
}

ul {
  list-style-type: square;
}

.interest {
  cursor: pointer;
}

#image {
  min-height: 350px;
  background-image: url("./images/headshot.png");
  background-repeat: no-repeat;
  background-size: contain;
}

h1 {
  margin-bottom: 10px;
}

h3 {
  margin-bottom: 10px;
}

.graytext {
  font-size: 25px;
  color: #696969;
  font-style: italic;
}

a {
  color: #696969;
  text-decoration: none;
}

a:hover {
  color: #949494;
  text-decoration: underline;
  cursor: pointer;
}

#footer {
  text-align: center;
}

@media (min-width: 576px) {
  .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    grid-template-rows: 1.2fr 1fr 0.15fr;
    height: 95vh;
  }

  .hide {
    display: none;
  }

  #about {
    margin-right: 5%;
  }

  #projects {
    margin-left: 10%;
    text-align: right;
  }

  .project-list {
    list-style-type: none;
  }

  #hello {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-column-end: span 2;
  }

  .expand {
    font-size: 10px;
  }

  .graytext {
    font-size: 30px;
  }

  #textbox {
    margin-top: 18.72px;
  }

  #footer {
    grid-column-end: span 3;
    vertical-align: top;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
