body{
    background-color: #fcf4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    margin: 0;
}
*{
    color: #4C4C4C;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header{
    display: flex;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    border-radius: 1rem;
    max-width: 90vw;
    justify-self: center;
    gap: 2rem;
    margin-bottom: 1rem;

    a{
        color: #595757;
        text-decoration: none;
    }
    a:hover{
        color: #000;
    }
}
main{
    display: flex;
    flex-direction: column;
    justify-self: center;
    height: 90%;
    max-width: 90vw ;
    background-color: #E57373;
    padding: 1rem;
    border-radius: 1rem;
    gap: 1rem;
}
section{
    background-color: #facac7;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: #6b4003 6px 6px 3px;
    text-wrap: balance;
}

.extra, .bio{
    background-color: #e9d0d0;
    box-shadow: none;
}
ul{
    list-style: none;
    padding: 0;
}
li{
    text-wrap: balance;
    display: flex;
}
li::before{
    content: "◉";
    color: #FFB74D;
    margin-right: 1rem;
}

@media screen and (min-width: 1020px) {
    main{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        /* display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 1rem;
         */
         font-size: 1.2rem;
    }
    .bio{
        width: 60%;
    }
    .goals{
        width: 30%;
    }
    section{
        width: 40%;
    }
    .extra{
        width: 100%;
    }
}
