body {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 2rem 2rem;
    font-family: Open Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

main {
    max-width: 48rem;
}

h1 span {
    background-image: linear-gradient(
90deg, #fda000 0%, #d3208b 50%, #879af2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-box-decoration-break: clone;
    color: transparent;
    font-size: 6rem;
    line-height: 1;
}

h1 { 
    margin-bottom: 2rem;
}

p {
    font-size: 1.4rem;
}

.home-links {
    color: #86868b;
    overflow: hidden;
    position: relative;
    margin: 1rem auto;
    font-size: 1.3rem;
    max-width: 410px;
}

.home-links ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin-left: -4px;
    margin-top: 0;
}

.home-links li {
    list-style: none;
    flex-grow: 1;
    flex-basis: auto;
    margin: .25em 0;
    padding: 0 1em;
    text-align: center;
    position: relative;
}

.home-links li:before {
    content: '\2022';
    position: absolute;
    left: 0;
    margin-left: -4px;
}

a {
    color: #1d70b8;
}

a:hover {
    color: #003078;
    text-decoration-thickness: 0.3rem;
}

a:focus {
    color: black;
    text-decoration-thickness: 0.3rem;
    background-color: #fd0;
    outline: 3px solid transparent;
}

.profile-img {
    height: 10rem;

    border: double 0.3rem transparent;
    border-radius: 50%;
    background-image: linear-gradient(white, white), 
                        linear-gradient(90deg, #fda000 0%, #d3208b 50%, #879af2 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;

    /*border: 10px solid;
    border-radius: 50%;
    border-image-slice: 1;
    border-width: 5px;
    border-image-source: linear-gradient(
        90deg, #fda000 0%, #d3208b 50%, #879af2 100%);*/
}

.foot-quote {
    color: #86868b; 
}

@media (prefers-color-scheme: dark) {
    body {
      color: #eee;
      background: black;
    }
  }