main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-top: 50px;
    font-family: var(--font-body);
    height: 10%;
    width: 100%;
    max-width: 800px;
}

main h1 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

main h1:after {
    content: "";
    display: block;
    width: 300%;
    align-self: center;
    height: var(--height);
    background: rgba(var(--text), 0.2);
    margin: 20px 0;
    animation: length ease-in-out 1s;
}

@keyframes length {
    0% {
        width: 0%;
    }
    100% {
        width: 300%;
    }
    
}


svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 100%;
    color: var(--text);
}

.container {
    width: 100px;
    height: min-content;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.spacer {
    margin-top: 35px;
}

.less {
    margin-top: 20px;
}

.td {
    display: flex;
    flex-direction: row;
}

.td {
    margin-top: 20px;
}

.td a {
    margin-left: 10px;
}

.td p {
    margin-left: 5px;
}




.linkedIn {
    width: 17.5px;
}