body {
    background-color: #3B3131;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #FAF7F7;
}
.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
}
.banner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
}

.nav {
    color: #FAF7F7;
    display: flex;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
    min-width: auto;
    font-family: "Noto Sans", sans-serif;
}

.content-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
}

.zoom {
  transition: transform .2s;
  margin: 0rem 1rem 1rem 1rem; 
  color: #FAF7F7
  }

.zoom:hover {
  transform: scale(1.5); /* enlarges any element with this class on hover */
}

.link {
    color: #FAF7F7;
    margin-bottom: 1rem;  
}

.banner img {
    border-radius: 50%; /*rounds the image into a circle*/
    height: 5rem;
}

.content img {
    height: 100%;
    width: 100%;
}

.date {
    font-family: "Noto Sans", sans-serif;
    opacity: 0.3;
    margin-top: 0;
}