html, body {
    font-family: Montserrat, sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    padding: 0;
    margin: 0;
}

#simplifiedView {
    font-size: 14px;
    position: fixed;
    top: 0;
    right: 0;
    width: fit-content;
    margin: 1rem;
    opacity: 0.75;
    transition: opacity 0.2s;
    color: #fff;
    z-index: 20000;
    text-decoration: none;
    text-shadow: 0 0 0.6rem #000;
}

#simplifiedView:hover {
    opacity: 1;
}

#app {
    max-width: 70rem;
    margin: auto;
    padding: 1rem;
    padding-top: 0;
}

.heading {
    margin: 0;
    font-weight: bold;
    background-color: #000;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading h1 {
    margin: auto;
    color: #fff;
    font-size: 3rem;
    margin: 2rem 0;
}

.projectContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    background-color: #f5f5f5;
    overflow-y: auto;
    padding-bottom: 1rem;
    margin-bottom: 5rem;
}

.project {
    max-width: 20rem;
}

.project img {
    width: 2rem;
    height: 2rem;
    transition: all 0.2s ease-in-out;
}

.project img:hover {
    transform: scale(1.1);
}

.about {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.about > div {
    margin: 0.5rem;
}

.about > .text {
    width: 15rem;
    flex-grow: 1;
}

.imageContainer {
    width: min-content;
}
.imageContainer img {
    width: 100%;
}

.contactMe {
    overflow-x: auto;
    width: fit-content;
    max-width: 100vw;
}

.contactMe > a {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.75rem;
}

.contactMe img {
    margin: 0.5rem;
    width: 2rem;
    height: 2rem;
    transition: all 0.2s ease-in-out;
}

.contactMe > a:hover img {
    transform: scale(1.1);
}

