*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: 'Kumbh Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
}

body{
    background: #fafafa;
}

/* main */

main{
    width: auto;
    height: 100%;
    min-height: calc(100vh - 189px);

    margin: 1em;
}

/* footer */
footer{
    min-height: 5em;

    background-color: rgba(128, 128, 128, 0.6);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.git, .linkedin, .email{
    width: 40px;
    height: 40px;
    margin-right: .1em;
}

footer div{
    margin-top: .5em;
}

.personalLinks{
    color: white;
    font-weight: bold;

    text-decoration: none;
}

/* main content */

#img-nft{
    width: 300px;

    margin-left: 2em;
    margin-top: 2em;
    border-radius: 10px;
    transition: all .4s ease;
}
#img-time-track{
    width: 400px;

    margin-top: 2em;
    border-radius: 10px;
    transition: all .4s ease;
}
#img-commerce{
    width: 500px;

    margin-top: 2em;
    border-radius: 10px;
    transition: all .4s ease;
}
#img-ipSearch{
    width: 500px;

    margin-top: 2em;
    border-radius: 10px;
    transition: all .4s ease;
}

.img-pro:hover{
    transform: scale(1.05);
    border: solid 1px black;
}

.img-content{
    margin-bottom: 2em;
}

.works-content{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;

    gap: 2em;
    margin-top: 2em;
}

main p, main h1{
    margin-bottom: 1em;

    text-align: center;
}
main h2{
    margin-left: 2em;
    margin-top: 2em;
}

main h1, main h2{
    font-size: 1.5em;
}