body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    background-color: #F7F7F7;
}

* {
    font-family: 'Maven Pro', sans-serif;
}

h1 {
    font-size: 48px;
    margin: 0px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    margin: 25px 0px;
}

h3 {
    font-size: 20px;
    margin: 0px;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    font-size: 18px;
    margin: 5px 0px;
}

::-webkit-scrollbar {
    width: 0px;
}

.container {
    padding: 0px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-panel {
    max-width: 50vw;
    height: 100vh;
    overflow: auto;
}

.intro {
    margin-top: 10vh;
    max-width: 500px;
}

.icons {
    padding: 10px 0px;
}

.icons > a {
    padding-right: 10px;
}

.description {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0px;
}

.tech-stack {
    font-size: 14px;
    font-weight: 400;
}

.project:hover {
    background: white;
    cursor: pointer;
    border-radius: 4px;
}

.content {
    padding: 10px;
}

.profile-picture > img {
    width: 400px;
    height: 400px;
}

@media only screen and (max-width: 1000px) {
    .container {
        flex-direction: column-reverse;
        padding: 0px 20px;
    }

    .intro {
        margin-top: 0px;
    }

    .left-panel {
        height: auto;
        max-width: 100%;
    }

    .profile-picture > img {
        width: 350px;
        height: 350px;
    }
}