* {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 16px;
}

html , body {
    font-family: 'Roboto', sans-serif;
    color: #06142e;
    background: #fff;
}

#app {
    background: #f5f5f5;
    position: relative;
    padding: 80px 10% 20px;
}

aside {
    position: absolute; 
    top: 0;
    right: 0;
    margin: 20px 20px 0 30px ;
    display: flex;
    gap: 15px;
}

aside a {
    text-decoration: none;
    color: #473e66;
    opacity: .7;
}

#stacks {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.stacks h3 {
    color: #1b3358;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 10px;
}

.stack-list {
    list-style-type: none;
}

.stack-list li {
    margin-bottom: 8px;
    opacity: .7;
}

#intro {
    margin: 20px 0 0;
    width: 100%;
}

h1 {
    font-weight: 900;
    letter-spacing: 3px;
    color: #1b3358;
    font-size: 2.5rem;
    margin: 0;
}

#title {
    color: #473e66;
    opacity: .9;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 25px;
    /* letter-spacing: 1px; */
    margin: 10px 0 30px;
}

.paragraph {
    opacity: .7;
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 400;
}

.line {
    border: none;
    border-top: 1px solid #473e66;
    width: 100%; 
    margin: 30px auto;
}

.h3-header {
    background-image: linear-gradient(120deg, #b97ab4 0%, #b97ab4 100%);
    background-repeat: no-repeat;
    background-size: 110px 0.3em;
    background-position: 0 83%;
}

#experiences h3, .h3-header {
    margin-bottom: 10px;
    color: #1b3358;
    font-size: 1.4rem;
}

.job {
    margin: 15px 0;
}

.jd-list {
    margin: 10px 0;
}

.jd {
    opacity: .7;
    line-height: 23px;
    letter-spacing: 1px;
    font-size: .9rem;
    font-weight: 400;
}

#projects {
    margin: 30px 0;
}

#projects h3 {
    background-size: 85px 0.3em;
}

#link {
    text-decoration: none;
    background-size: 60px 0.3em;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media only screen and (min-width: 1000px) {
    body {
        margin: 5%;
    }

    main {
        display: grid;
        gap: 1rem;
        grid-template-columns: .3fr .7fr;
    }

    #stacks {
        display: flex;
        flex-direction: column;
        padding-top: 30px;
    }
}