
/* -------------------------------------------------------------------------------- */
/* ! based  */
/* -------------------------------------------------------------------------------- */
/* tavolozza */
/* max with 1450   over flow hidden
per non far si che si sminchi con la grandezza  */

:root{
    --primary:#ffa41c ;
    --secondary:#1a41cd;
    --accent:#ccc5b9;
    --light:rgba(255, 252, 242, 1);
    --dark:rgba(124, 118, 118, 1);
}
/* reset */
*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    
}

li{
    list-style-type: none;
}

/* tipografia */
body{

    font-family: 'Helvetica', sans-serif;
    
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Helvetica', sans-serif;
    font-size: 1.4em;
}
p, ul, a{
    font-family: 'Helvetica', sans-serif;
    font-size: 1em;
    line-height: 1.2em;

}
p .leading{
    font-size: 1.4em;
    line-height: 1.4em;
}
p span{
    font-weight: 300;
    color: cornflowerblue;
}
.cta{
    background-color: var(--primary);
    display: block;
    font-weight: 900;
    color: var(--secondary);
    padding: 12px;
    border-radius: 12px;
    width: fit-content;
    margin: 0 auto;
    text-transform: uppercase;
}
/* riuso */
.res{
    width: 100%;
    max-width: 400px;
}
.clipped{
    clip-path: circle();
}
/* -------------------------------------------------------------------------------- */
/* ! Mobile first */
/* -------------------------------------------------------------------------------- */

/* grid */
.grid{
    display: grid;
    grid-template-columns: repeat(8, 1fr);

    gap: 10px;
}


/* navigazione */

.site-nav {
 
    grid-column: 2/8;
    height: 55px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid ;
}

.ui-btn{
    grid-column: 2/5 ;
    display: flex;
    
}
.ui-btn1 {
    grid-column: 6/8;
    display: flex;

}

/* BOTTONE SWITCH */
.ui-btnA{
    color: var(--primary);
}
.ui-btn {
    --btn-padding: 12px 20px;
    --btn-hover-bg: var(--secondary);
    --btn-transition: .3s;
    --btn-letter-spacing: .1rem;
    --btn-animation-duration: 2.3s;
    --btn-shadow-color: rgba(0, 0, 0, 0.137);
    --hover-btn-color: #FAC921;
    --default-btn-color: #fff;
    --font-size: 17px;
    /* 👆 this field should not be empty */
    --font-weight: 600;
    --font-family: Menlo, Roboto Mono, monospace;
    /* 👆 this field should not be empty */
}

/* button settings 👆 */

.ui-btn {
    box-sizing: border-box;
    padding: var(--btn-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-btn-color);
    font: var(--font-weight) var(--font-size) var(--font-family);
    background: var(--btn-default-bg);
    border: none;
    cursor: pointer;
    transition: var(--btn-transition);
    overflow: hidden;
    box-shadow: var(--btn-shadow);
}

.ui-btn span {
    letter-spacing: var(--btn-letter-spacing);
    transition: var(--btn-transition);
    box-sizing: border-box;
    position: relative;
    background: inherit;
}

.ui-btn span::before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    background: inherit;
}

.ui-btn:hover,
.ui-btn:focus {
    background: var(--btn-hover-bg);
}

.ui-btn:hover span,
.ui-btn:focus span {
    color: var(--hover-btn-color);
}

.ui-btn:hover span::before,
.ui-btn:focus span::before {
    animation: chitchat linear both var(--btn-animation-duration);
}

@keyframes chitchat {

    0% {
        content: "#";
    }

    5% {
        content: ".";
    }

    10% {
        content: "^{";
    }

    15% {
        content: "-!";
    }

    20% {
        content: "#$_";
    }

    25% {
        content: "№:0";
    }

    30% {
        content: "#{+.";
    }

    35% {
        content: "@}-?";
    }

    40% {
        content: "?{4@%";
    }

    45% {
        content: "=.,^!";
    }

    50% {
        content: "?2@%";
    }

    55% {
        content: "\;1}]";
    }

    60% {
        content: "?{%:%";
        right: 0;
    }

    65% {
        content: "|{f[4";
        right: 0;
    }

    70% {
        content: "{4%0%";
        right: 0;
    }

    75% {
        content: "'1_0<";
        right: 0;
    }

    80% {
        content: "{0%";
        right: 0;
    }

    85% {
        content: "]>'";
        right: 0;
    }

    90% {
        content: "4";
        right: 0;
    }

    95% {
        content: "2";
        right: 0;
    }

    100% {
        content: "";
        right: 0;
    }
}
/* BOTTONE 2  */
.ui-btn1 {
    --btn-padding: 12px 20px;
    --btn-hover-bg: var(--secondary);
    --btn-transition: .3s;
    --btn-letter-spacing: .1rem;
    --btn-animation-duration: 2.3s;
    --btn-shadow-color: rgba(0, 0, 0, 0.137);
    --hover-btn-color: #FAC921;
    --default-btn-color: #fff;
    --font-size: 17px;
    /* 👆 this field should not be empty */
    --font-weight: 600;
    --font-family: Menlo, Roboto Mono, monospace;
    /* 👆 this field should not be empty */
}

/* button settings 👆 */
.ss {
    color: #ffa41c;
}

.ui-btn1 {
    box-sizing: border-box;
    padding: var(--btn-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-btn-color);
    font: var(--font-weight) var(--font-size) var(--font-family);
    background: var(--btn-default-bg);
    border: none;
    cursor: pointer;
    transition: var(--btn-transition);
    overflow: hidden;
    box-shadow: var(--btn-shadow);
}

.ui-btn1 span {
    letter-spacing: var(--btn-letter-spacing);
    transition: var(--btn-transition);
    box-sizing: border-box;
    position: relative;
    background: inherit;
}

.ui-btn1 span::before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    background: inherit;
}

.ui-btn1:hover,
.ui-btn1:focus {
    background: var(--btn-hover-bg);
}

.ui-btn1:hover span,
.ui-btn1:focus span {
    color: var(--hover-btn-color);
}

.ui-btn1:hover span::before,
.ui-btn1:focus span::before {
    animation: chitchat linear both var(--btn-animation-duration);
}

@keyframes chitchat {

    0% {
        content: "#";
    }

    5% {
        content: ".";
    }

    10% {
        content: "^{";
    }

    15% {
        content: "-!";
    }

    20% {
        content: "#$_";
    }

    25% {
        content: "№:0";
    }

    30% {
        content: "#{+.";
    }

    35% {
        content: "@}-?";
    }

    40% {
        content: "?{4@%";
    }

    45% {
        content: "=.,^!";
    }

    50% {
        content: "?2@%";
    }

    55% {
        content: "\;1}]";
    }

    60% {
        content: "?{%:%";
        right: 0;
    }

    65% {
        content: "|{f[4";
        right: 0;
    }

    70% {
        content: "{4%0%";
        right: 0;
    }

    75% {
        content: "'1_0<";
        right: 0;
    }

    80% {
        content: "{0%";
        right: 0;
    }

    85% {
        content: "]>'";
        right: 0;
    }

    90% {
        content: "4";
        right: 0;
    }

    95% {
        content: "2";
        right: 0;
    }

    100% {
        content: "";
        right: 0;
    }
}

.header{ 
    min-height: 100px;
} 
.background{
    border-radius: 20px;
    margin: 10px;
    color: white;
    background-color: var(--secondary);
    
}

/* MENU */

.site-nav__menu a{
    align-items: center;
    display: flex;
    color: var(--secondary);
    font-size: 4em;
    margin-left: 10px;
}
.site-nav__menu{
    position: absolute;
    top: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    
}
.open .site-nav__menu{
    flex-direction: column;

    justify-content: center;
    position: fixed;
    max-height: 100%;
    background-color: var(--primary);
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 2;
    color: var(--primary);
}

/*  */

.site-nav__hamburger{
    
    grid-column: 6/8;
    align-self: center;
    justify-self: center;
    cursor: pointer;
    z-index: 3  ;
}
.menu__1{
    border-bottom: var(--secondary) solid 2px;
    margin-bottom: 20px;
}
.site-nav__menu a:before {
    background-color:var(--secondary);
    content: "";
    display: inline-block;
    height: 2px;
    margin-right: 10px;
    transition: all .42s cubic-bezier(.25, .8, .25, 1);
    width: 0;
}
.site-nav__menu a:hover {
    color: var(--dark);
}

.site-nav__menu a:hover:before {
    background-color:var(--dark);
    width: 3rem;
}
.welcome h2{
    font-weight: 900;
    z-index: 1;
    font-size: 4em;
}
/* #example1 {
    display: flex;
    align-items: center;
    color: var(--primary);
    writing-mode: vertical-rl;
    text-orientation: upright;
    border: 1px solid red;
    grid-column: 2/5;
    font-weight: 900;
    z-index: 1;
    font-size: 1.2em;
} */
.welcome_web{
    display: flex;
    align-items: center;
    color: var(--primary);
    writing-mode: vertical-rl;
    /* text-orientation: upright; */
    grid-column: 2/5;
    font-weight: 900;
    z-index: 1;
    font-size: 1.2em;
}
.welcome_designer{
    display: flex;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    border: 1px solid red;
    grid-column: 6/8;
    font-weight: 900;
    z-index: 1;
    font-size: 1.2em;
}
/* #welcome sarebbe stato comunque valido evitando di cambiare la classe */

.welcome__text{
    z-index: 1;
    grid-column: 2/8;
    text-align: center;
}
.welcome__button1{
grid-column: 1/4;
}
.welcome__button2 {
    position: fixed;
    z-index: 2;
    grid-column: 6/9;
    right: 80px;
    bottom: 30px;
}
/* welcome buttt */
.wbutton {
    background-color:var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    width: auto;
    max-width: 60px;
    /** I'm animating max-width because width needs to be auto, and auto can't be animated **/
    -webkit-transition: max-width 0.5s;
    transition: max-width 0.7s;

}

.wbutton:hover {
    max-width: 300px;
}

.icon {
    margin-right: 15px;
    padding: 0px 8px;
    display: flex;
    align-items: center;
}

.text {
    color: var(--secondary);
    padding-right: 15px;
}

#contatti h2{
    grid-column: 2/8;
    display: flex;
    justify-content: center;
}
.contatti__text{
    grid-column: 2/8;
    justify-self: center;
}
/* card */
/* -------------------------------------------------------------------------------- */
/* ! USARE IL GRID COME IMPAGINAZIONE  */
/* -------------------------------------------------------------------------------- */
/* SCROLLBAR */
#lavoro_text span {
    border-bottom: 2px solid var(--accent);
    grid-column: 1/7;
    color: var(--accent);
    font-size: 5em;
}

.card {
    margin: 10px;
    min-height: 300px;

    background: var(--secondary);
    color: var(--accent);
    position: relative;
    border-radius: 2.5em;
    padding: 2em;
    transition: transform 0.4s ease;
}

.card .card-content {
    border-top: var(--primary) solid 2px;
    grid-column: 1/9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
    height: 100%;
    transition: transform 0.4s ease;

}

.card .card-title {
    grid-column: 1/6;
    font-weight: bold;
    font-size: 8em;
}
.card-emo{
    grid-column: 6/9;
    display: flex;
    justify-content: center;
    align-self: center;
}


.card-caption{
    grid-column: 1/6;
    justify-content: center;
    display: flex;
    align-self: center;
}
.card-arrow{
    width: 100px;
    grid-column: 6/9;
    display: flex;
    align-items: center;
    justify-self: center;
}



.card:hover {
    cursor: pointer;
    transform: scale(0.97);
}

.card:hover .card-content {
    transform: scale(0.96);
}

.card:hover .card-image svg {
    transform: scale(1.05);
}

.card:active {
    transform: scale(0.9);
}  
.wrapper {
    display: flex;
    justify-content: center;
}

.cards {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: grid;
    grid-gap: 1rem;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 1rem);
    min-height: 60vh;
}

.cards-content:first-child {
    margin-left: 2rem;
}

.cards-content:last-child {
    margin-right: 2rem;
}






/* meee */
.me__foto{

    grid-column: 2/8;
}
#me_text span{
    border-bottom: 2px solid var(--accent);
    grid-column: 1/7;
    color: var(--accent);
    font-size: 10em;
}
#me_descrizione p{
    margin-top : 30px;
    grid-column: 3/7;
    color: var(--secondary);
}
#me_descrizione button {
    grid-column: 4/6;
}
/* me button */
.butt {
    font-size: 18px;
    color: #e1e1e1;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}



/* work  */

.work__inizio {
    grid-column: 1/9  ;
    color: var(--accent);

    font-size: 6em;
    border-bottom: var(--accent) solid 2px;
    margin-bottom: 20px;
}
#work__presentazione{
    border-bottom: var(--secondary) solid 3px ;
    background-color: var(--accent);

}
.work__title{
    grid-column: 2/8;
    font-size: 10em;
    color: var(--primary);
    font-weight: 900;
    border: var(--secondary) 2px solid;

}
.wt__descri{
    position: relative;
    left: 410px;
    bottom: 200px;
    color: var(--primary);
    margin-right: 20px;
    writing-mode: vertical-rl;
}
.wt__titolo{
    grid-column: 2/8;
    color: var(--secondary);
}
#work__sotto{
    color: var(--secondary);

}
.work__descri{
    color: var(--dark);
    grid-column: 2/8;
    font-weight: 900;
    
}
.wd__project{
    grid-column: 2/8;
}
.wd__butt{
    grid-column: 7/9;
    display: flex;
    justify-content: center;
}


/* timelineee */
#per_text span {
    margin-top: 20px;
    border-bottom: 2px solid var(--accent);
    grid-column: 1/7;
    color: var(--accent);
    font-size: 4em;
}

.container2 {
    width: 80%;
    padding: 40px 0;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.container2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background: #CCD1D9;
    z-index: 1
}
.timeline-content a :hover{
    color: var(--secondary);
}

.timeline-block {
    width: -webkit-calc(50% + 8px);
    width: -moz-calc(50% + 8px);
    width: calc(50% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
}

.timeline-block-right {
    float: right;
}

.timeline-block-left {
    float: left;
    direction: rtl
}

.marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #F5F7FA;
    background: var(--primary);
    margin-top: 10px;
    z-index: 9999
}

.timeline-content {
    width: 95%;
    padding: 0 15px;
    color: var(--secondary)
}

.timeline-content h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 500
}

.timeline-content span {
    font-size: 15px;
    color: #a4a4a4;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.5em;
    word-spacing: 1px;
    color: #888;
}


@media screen and (max-width: 768px) {
    .container2:before {
        left: 8px;
        width: 2px;
    }

    .timeline-block {
        width: 100%;
        margin-bottom: 30px;
    }

    .timeline-block-right {
        float: none;
    }

    .timeline-block-left {
        float: none;
        direction: ltr;
    }
    
    
}

/* s */
.kill{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.skills {
    color: #1a41cd;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 400px;
    gap: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: 1s;
    
    grid-column: 1/2;
}

.each {
    background: #f1f3f6;
    box-shadow: inset 0 0 5px rgba(55, 84, 170, 0),
        inset 0 0 10px rgba(255, 255, 255, 0), 5px 5px 9px rgba(55, 84, 170, 0.15),
        -5px -5px 11px white, inset 0px 0px 2px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.2s ease-in-out;
    height: 190px;
    width: 190px;
    border-radius: 30px;
    font-family: Arial, Helvetica, sans-serif;
    border: 5px solid #eaeef5;
}

.skills:hover .each {
    box-shadow: inset 4px 4px 7px rgba(55, 84, 170, 0.15),
        inset -4px -4px 10px white, 0px 0px 2px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.2s ease-in-out;
}

.each .box {
    padding: 16px;
}

.css .box {
    text-align: right;
}

.js .box {
    margin-top: 40px;
}

.ng .box {
    margin-top: 40px;
    text-align: right;
}

.each .box .content h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 6px;
}

.each .box .content p {
    font-size: 12px;
    margin: 0;
}

.html .box .content i {
    margin-top: 40px;
}

.css .box .content i {
    font-size: 30px;
    margin-left: 100px;
    margin-top: 40px;
}

.js .box .content i {
    margin-bottom: 20px;
}

.ng .box .content i {
    margin-bottom: 20px;
}

.each .box .content i {
    font-size: 30px;
}

.center {
    position: absolute;
    height: 160px;
    width: 160px;
    background: #f1f3f6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border-radius: 108px;
    box-shadow: inset 0 0 5px rgba(55, 84, 170, 0),
        inset 0 0 10px rgba(255, 255, 255, 0), 5px 5px 9px rgba(55, 84, 170, 0.15),
        -5px -5px 11px white, inset 0px 0px 2px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.2s ease-in-out;
    border: 10px solid #e8edf5;
}

.center .box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}


/* footer */
/* footer */
.social {
    gap: 7px;
    display: flex;
    justify-content: center;
}

#row {
    display: flex;

}

.container {
    grid-column: 2/8;
}

.col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.col1 {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-dark {
    padding: 30px 0;
    color: #f0f9ff;
    background-color: var(--secondary);
}

.col-h3 {
    font-size: 3em;
}

.footer-dark h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 25px;
    color: var(--primary);
}

.footer-dark ul {

    line-height: 1.6;
    font-size: 14px;

}

.footer-dark ul a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
    font-size: 17px;
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
}

#footer__h {
    color: #ffa41c;
    font-size: 3em;
    display: flex;
    justify-content: center;
}

.footer-dark ul a:hover {
    opacity: 0.8;
}

@media (max-width:767px) {
    .footer-dark .item:not(.social) {
        text-align: center;
        padding-bottom: 20px;
    }
}

.footer-dark .item.text {
    margin-bottom: 36px;
}

@media (max-width:767px) {
    .footer-dark .item.text {
        margin-bottom: 0;
    }
}

.footer-dark .item.text p {
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-dark .item.social {
    text-align: center;
}

@media (max-width:991px) {
    .footer-dark .item.social {
        text-align: center;
        margin-top: 20px;
    }
}

.footer-dark .item.social>a {
    font-size: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
    margin: 0 8px;
    color: #fff;
    opacity: 0.75;
}

.footer-dark .item.social>a:hover {
    opacity: 0.9;
}

.footer-dark .copyright {
    text-align: center;
    padding-top: 24px;
    opacity: 0.3;
    font-size: 13px;
    margin-bottom: 0;
}

/* media query medium  da quella grandezza in poi si attiveranno altri comnadi */
@media (min-width:767px) {
        .card-caption {
                grid-column: 1/6;
                justify-content: center;
                display: flex;
                align-self: center;
                font-size: 2em;
            }
        .card-emo {
                grid-column: 5/9;
                display: flex;
                justify-content: center;
                align-self: center;
                font-size: 3em;
            }

    .res {
            width: 100%;
            max-width: 600px;
        }
    .welcome_web {
        color: var(--primary);
        border: 1px solid red;
        grid-column: 1/5;
        font-weight: 900;
        z-index: 1;
        font-size: 2em;
    }

    .welcome_designer {
        border: 1px solid red;
        grid-column: 6/9;
        font-weight: 900;
        z-index: 1;
        font-size: 2em;
    }
    .work__title {
        display:flex ;
        border: 1px solid red;
        grid-column: 2/8;
        font-size: 10em;
        color: var(--primary);
        font-weight: 900;

    }
    .me__foto {
   
        grid-column: 2/8;
    }
    .wd__project{
        grid-column: 2/6;
    }



}
    /* media query large */

@media(min-width: 992px) {
    .kill{
        margin: 40px;
    }
    .grup{
        display: flex;
        align-items: center;
        justify-content: center;



    }
    .card-caption {
            grid-column: 1/6;
            justify-content: center;
            display: flex;
            align-self: center;
            font-size: 0.8em;
        }
    
        .card-emo {
            grid-column: 5/9;
            display: flex;
            justify-content: center;
            align-self: center;
            font-size: 1em;
        }
    .res {
            width: 100%;
            max-width: 800px;
        }
  
 
    .cards {
        display: flex;
    }
    .card {
        max-width: 200px;
        display: flex;
        grid-column: 2/6;
        margin: 10px;
        min-height: 300px;
        background: var(--secondary);
        color: var(--accent);
        position: relative;
        border-radius: 2.5em;
        padding: 2em;
        transition: transform 0.4s ease;
    }



    .card .card-title {
        grid-column: 1/6;
        font-weight: bold;
        font-size: 4em;

    }

    .card-emo {
        grid-column: 6/9;
        display: flex;
        justify-content: center;
        align-self: center;
    }

    .card #card-bottom {
        
        height: 150px;

    }



    .card-arrow {
        width: 100px;
        grid-column: 7/9;
        display: flex;
        align-items: center;
        justify-self: center;
    }
    .work__inizio {
        grid-column: 2/8;
        color: var(--accent);
        font-size: 6em;
        border-bottom: var(--accent) solid 2px;
        margin-bottom: 20px;
    }

    
    #work__presentazione {
        border-bottom: var(--secondary) solid 3px;
        background-color: var(--accent);

    }

    .work__title {
        grid-column: 2/8;
        font-size: 10em;
        color: var(--primary);
        font-weight: 900;

    }



    .wt__titolo {
        grid-column: 2/8;
        color: var(--secondary);
    }



    .work__descri {
        color: var(--dark);
        grid-column: 2/6;
        font-weight: 900;

    }


    .me__foto {
   
        grid-column: 2/8;
    }

    .wd__project {
        grid-column: 2/6;
    }
 



}
