* {
    margin: 5px;
    padding: 5px;
    font-family: Roboto;
}

header {
    background: linear-gradient(red,black);
    color: rgb(237, 238, 240);
    display: grid;
    grid-template-areas: "pic header"
    "pic links";
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    justify-content: left;
    img {
        grid-area: pic;
        border-radius: 100%;
    }

    h1 {
        grid-area: header;
        position: relative;
        top: 10px;
        /* background: linear-gradient(to bottom, darkgray,rgb(237, 238, 240));
        background-clip: text;
        color: transparent; */
    }

    li {
        grid-area: links;
        display: inline-block;
        border: 1px solid rgb(237, 238, 240);
        border-radius: 20%;

    } 
}
    
body {
    background-color: rgb(237, 238, 240);
}




