body {
    margin: 0;
    padding: 0;
    background-color: #181717;
}
h1.name {
    font-family: "museo-sans", "Arial Black", Gadget, sans-serif;
    font-style: normal;
    font-weight: 900; 
    font-size: 150px;
    color: #e9e9e9;
    text-align: center;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    white-space: nowrap;
}
.icon {
    height: 120;
    width: 120;
    transition: .5s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width:100%
}
.icon:hover {
    opacity: 0.7;
  }
.container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 100vh;
    align-items: center;
}
.title { grid-area: 2 / 1 / span 2 / span 6; }
.thesis { grid-area: 4 / 2 / 5 / 3; }
.resume { grid-area: 4 / 3 / 5 / 4; }
.github-1 { grid-area: 4 / 4 / 5 / 5; }
.github-2 { grid-area: 4 / 5 / 5 / 6; }
