body {
    font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Helvetica Neue", "Arial", sans-serif;
}
@media (max-width: 500px) {
    body {
        padding: 30px 20px;
    }   
}
@media (min-width: 501px) {
    body {
        padding: 50px;
        margin-left: auto;
        margin-right: auto;
        max-width: 700px;
    }
}



h1 {
    font-weight: 500;   
    text-align: center;
}
@media (max-width: 500px) {
    h1 {
        font-size: 25px;
    }
    h2 {
        font-size: 18px;
    }
}
@media (max-width: 660px) AND (min-width: 501px) {
    h1 {
        font-size: 40px;
    }
}
@media (min-width: 661px) {
    h1 {
        font-size: 50px;
    }
}

img.header-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 150px;
}
@media (max-width: 500px) {
    img.header-image {
        height: 110px;
    }
}

img.header-app-icon {
    border-radius: 34px;
}
@media (max-width: 500px) {
    img.header-app-icon {
        border-radius: 25px;
    }
}
    
img.face {
    -webkit-clip-path: circle(74px at center);
    clip-path: circle(74px at center);
}
@media (max-width: 500px) {
    img.face {
        -webkit-clip-path: circle(54px at center);
        clip-path: circle(54px at center);
    }
}     

.lead {
    font-size: 20;
    text-align: center;
}


ul.project-list {
    width: 80%;
    padding-left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
@media (max-width: 525px) {
    ul.project-list {
        width: 100%;
    }
}
@media (min-width: 711px) {
    ul.project-list {
        width: 500px;
    }
}


ul.project-list li {
    list-style-type: none;
    text-indent: 0;
    margin-bottom: 30px;
}
a.project-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px;
    border-radius: 35px;
}
a.project-link:hover {
    background-color: #4169E120;
}
a.project-link:active {
    background-color: #4169E140;
}
ul.project-list li .project-text {
    margin-top: 0;
    margin-left: 15px;
}
@media (max-width: 350px) {
    ul.project-list li .project-text {
        margin-left: 0px;
        text-align: center;
    }
}

ul.project-list img.app-icon-undecorated {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

ul.project-list img.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 23px;
    box-shadow: grey 0px 0px 5px;
    flex-shrink: 0;
}
@media (max-width: 350) {
    ul.project-list img.app-icon {
        float: none;
        position: static;
        margin: 0px;
        width: 80px;
        height: 80px;
        border-radius: 19px;
        margin-top: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    ul.project-list img.app-icon-undecorated {
        float: none;
        position: static;
        margin: 0px;
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        margin-top: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}


ul.project-list li .project-name {
    font-size: 22;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 0px;
    padding-bottom: 0;
}
ul.project-list li .project-description {
    margin-top: 0;
    margin-bottom: 0;
}
.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
a {
    color: royalblue;
    text-decoration: none;
}

.deemphasize {
    color: darkgrey;
    font-weight: normal;
}

.under-construction {
    margin: 0;
    color: darkgrey;
}

a.button {
    color: white;
    background-color: dodgerblue;
    padding: 13px;
    border-color: black;
    border-radius: 5px;
    transition: all 0.1s;
    display: inline-block;
}
a.button:link {
    
}
a.button:active {
    background-color: darkblue;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.no-styling {
    color: inherit;
}

.feedback-wrapper {
    text-align: center;
    margin-top: 40px;
}
