
/* Home */
section.home {
    /* background: radial-gradient(circle, rgba(0,62,94,1) 0%, rgba(78,168,240,1) 45%, rgba(10,60,111,1) 75%, rgba(0,17,41,1) 100%); */
    background: var(--gradient);
    height: 100%;
    color: #FFF;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 1.25em;
}

section.home > img{
    position: fixed;
    float: right;
    bottom: 0;
    left: 35%;
}

section.home > nav {
    background-color: transparent;
    padding: 1em;
    font-size: 1em;
    font-weight: 400;
}

section.home a:hover{
    background-color: var(--black-50);
    border-radius: 2em;
}

section.home .callout{
    color: var(--secondary);
    font-size: 3.5em;
    font-weight: 700;
}

section.home .container{
    flex: 1;
    display: flex;
    gap: 1em;
    flex-direction: column;
    padding: 8em;
}

section.home .text{
    font-size: 1.5em;
}

.home .tech > div {
    display: flex;
    gap: 1em;
    align-items: center;
    margin: 1em 0;
}