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

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

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

.zoom {
  transition: transform .2s; 
  }

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

.project-card {
    height: 10rem;
    width: 12rem;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #4A3E3E;
    padding: 1rem;
    margin: 1rem 0;
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card img {
    width: 100%;
    max-height: 7rem;
    object-fit: contain;
}

.nav a {
    margin: 0rem 1rem 1rem 1rem;
    color: #FAF7F7;
}

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