@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

* {
    font-family: Helvetica ,Roboto;
}

html{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Roboto, sans-serif;
    background: #fafafa;
    animation: fadeIn 1.5s ease-in-out forwards;
}


.container_info {
    display: grid;
    grid-template-columns: 0.8fr 2fr 2fr 0.8fr;
    column-gap: 2em;
}

.info {
    grid-column: 2 / 3;
}

.container_info img {
    grid-column: 3 / 4;
    grid-row: 1 / 4;
    width: 100%;
    height: auto;
    border-radius: 1em;
    justify-self: start;
    align-self: start;
    margin-top: 10%;
}

.info h1 {
    font-size: 3.2em;
    margin-bottom: 8%;
}

.info h3 {
    font-size: 1.5em;
    margin-bottom: 2%;
    margin-top: 0;
}

.info p {
    margin-top: 0;
    color: #6e6d6d;
    font-size: 1.2em;
}

.skills {
    margin-top: 3%;
    display: grid;
    grid-template-columns: 0.8fr 2fr 2fr 0.8fr;
}

.skills h3 {
    grid-column: 2 / 3;
    font-size: 1.5em;
    margin-bottom: 2%;
    margin-top: 0;
}

.icon {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-flow: row wrap;
    gap: 20px;
    padding: 20px 0px;
    margin-bottom: 5%;
}

.icon img {
    width: 2.2em;
    height: 2.2em;
}

.icon i {
    font-size: 2.2em;
}