body {
  margin: 0;
  padding: 0;
  background-color: #fbedb2;
  font-family: Arial, Helvetica, sans-serif;
}

.resumesection {
  background-color: #f9dc7d;
  padding: 1em;
  margin-bottom: 2em;
  border-radius: 1em;
  font-weight: bold;
  font-size: large;
}

.page-whole {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title content""nav content";
  min-height: 100vh;
}

.title {
  grid-area: title;
  background-color: #f9dc7d;
  padding: 1em;
}

.title img {
  width: 100%;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2em 2em 2em;
  position: sticky;
  top: 0;
  left: 0;
}

main {
  grid-area: content;
}

.menu-wrapper {
  background-color: #f9dc7d;
  grid-area: nav;
}

.menu img {
  width: 20em;
}

.my-name {
  font-size: 2em;
  text-align: center;
  font-weight: bold;
  margin-top: 1em;
}

.menu-item {
  margin-top: 0.5em;
  font-size: 2em;
  text-align: left;
  font-weight: bold;
  width: 100%;
  border-bottom: 1px solid black;
}

.menu-item a {
  color: black;
  text-decoration: none;
}

.menu-item a:active {
  color: gray;
}

.work-grid {
  background-color: #fbedb2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  width: 100%;
}

.work-grid {
  background-color: #fbedb2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  width: 100%;
}

/* Trying to make site work for mobile.

- Think I got the media query to work.

- Need to figure out how to make graphic for "burger menu function" in the top left.

- How to handle animation. When the top "burger-menu" is clicked, animation would have it unfold to fill screen and nav menu would appear. Idea to handle that: Have the animation onfold being just a shape, but the actual menu is always there and just reveals when the menu "unfolds".
*/
@media (max-width: 1190px) {

  .menu-wrapper {
    display: none;
  }

  .page-whole {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "title""content";
  }

  .title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .title img {
    width: 20em;
  }

  .unfurled-menu .menu-wrapper {
    display: block;
    grid-area: content;
  }

  .unfurled-menu main {
    display: none;
  }

  nav img {
    animation: pulse 2s both ease-in-out infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }

    100% {
      transform: scale(1);
    }
  }

}


@media (min-width: 1190px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.single-column {
  grid-template-columns: 1fr;
}

.work-grid>* {
  width: 100%;
  height: auto;
}

.work-grid div>* {
  width: 100%;
  height: auto;
}

.work-grid iframe {
  aspect-ratio: 16/9;
}

.work {
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work h1 {
  margin-top: 0;
  font-size: 3em;
  padding: 0.5em;
  background-color: beige;
  border-radius: 1em;
}

.social-icons img {
  height: 2em;
  width: auto;
  margin: 0 0.2em;
}

.social-icons {
  margin-top: 4em;
  width: 100%;
}

.link-gif img {
  width: 70%;
  height: auto;
}

.link-gif {
  text-align: center;
}

.link-gif h2 {
  color: black;
  font-size: 2em;
}

.link-gif a {
  text-decoration: none;
}