@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Funnel Sans", Arial, sans-serif;
    font-size: 1rem;
    background-color:antiquewhite;
}

#wrapper {
    width: 900px;
    max-width: 100%;
    margin: auto;
    padding: 20px 10px 40px 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
}

.headline {
    flex: 0 1 100%;
}

h1 { 
    font-size: 2.6rem;
    text-align: left;
}

.tag {
    text-align: left;
    font-size: 1.6rem;
}

.profile-pic {
    flex: 0 1 auto;
}

.profile { 
    flex: 1 1 300px;
}

.projects, .memberships, .contact { 
    flex: 1 1 auto;
}

h2 { 
    margin-top: 0;
    font-size: 1.7rem;
}

p, ul { 
    font-size: 1.4rem;
}

a:link, a:visited {
    color:darkred;
}

a:hover, a:active {
    color: darkblue;
}

a:focus-visible {
    outline: 1px dashed #000;
}

@media screen and (min-width:666px) {
    #wrapper {
        justify-content: flex-start;
    }
    h1 { 
        text-align: right;
    }
    .tag {
        text-align: right;
    }
}