/* reset */
html,
body {
    overflow: hidden;
    height: 100%;
    scroll-behavior: smooth;
}

html.boom,
body.boom {
    overflow: scroll;
    overflow-x: hidden;
}

html.open,
body.open {
    overflow: hidden;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

/* Utilità */

.res {
    width: 100%;
    min-width: 200px;
}

/* Palette */

:root {
    --primary: #d1d1d1;
    --secondary: #00AEEF;
    --accent: #ED1C24;
    --light: #ffffff;
    --dark: #231F20;
}

/* Tipografia */

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000000;
    background: var(--primary);
    transition: 0.5s cubic-bezier(.93, .52, .94, .23);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Silkscreen', cursive;
    font-weight: 300;
    color: #000000;
}

h3 {
    font-size: 1.5em;
}

a,
p,
li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000000;
}

p {
    line-height: 1.5em;
}

/* -------------------------------------------------------------------------------- */
/* ! Grid System */
/* -------------------------------------------------------------------------------- */

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    margin: 0 auto;
}

section {
    padding-top: 50px;
}

/* -------------------------------------------------------------------------------- */
/* ! OPENING */
/* -------------------------------------------------------------------------------- */

#intro {
    height: 100vh;
    width: 100%;
    background: var(--primary);
    position: fixed;
    z-index: 4;
    left: 0;
}

#intro h1 {
    font-size: 3em;
}

.on,
.off {
    grid-column: 1/13;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    transition: ease 0.5s;
}

.on {
    display: none;
}

.boom .on {
    display: block;
    grid-column: 1/13;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease 0.5s;
}

.boom .off {
    display: none;
    transition: ease 0.5s;
}

.boom #intro {
    left: -120%;
    transition: ease 0.5s;
    transition-delay: 0.8s;
}

#intro span {
    color: var(--accent);
    background: var(--dark);
    animation: off 1s infinite;
}

@keyframes off {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* -------------------------------------------------------------------------------- */
/* * Navigazione  */
/* -------------------------------------------------------------------------------- */

.site-nav {
    padding: 0 10px;
    align-items: center;
    margin-top: 0;
}

.site-nav h1 {
    grid-column: 1/9;
    font-size: 2.5em;
    margin: 0;
}

.title {
    z-index: 3;
}

.open .title a {
    color: white;
    transition: ease 0.5s;
}

.title a {
    font-family: 'Silkscreen', cursive;
    transition: ease 0.5s;
}

.title span {
    color: var(--accent);
    background: var(--dark);
}

.menu__title {
    display: none;
}

.pro-menu {
    text-align: center;
}

.pro-menu a,
.for-menu a,
.fot-menu a,
.abt-menu a {
    color: var(--dark);

}

.pro-menu a:hover {
    color: var(--secondary);
    transition: ease 0.5s;
}

.moon {
    grid-column: 10/11;
    justify-self: end;
    z-index: 3;
    height: 30px;
    cursor: pointer;
}

/* Crispy McBackon*/

.hb {
    grid-column: 11/13;
    justify-self: end;
    z-index: 3;
}

.icon-hb {
    cursor: pointer;
    width: 2em;
    height: 1.5em;
    transform: rotate(0);
    transition: ease 0.5s;
    z-index: 2;
}

.open .icon-hb {
    transform: rotate(180deg);
    transition: ease 0.5s;
}

.icon-hb span {
    display: block;
    position: absolute;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgb(0, 0, 0);
    transition: ease 0.5s;
}

.icon-hb span:nth-child(1) {
    top: 0;
    transition: ease 0.5s;
}

.icon-hb span:nth-child(2) {
    top: 10px;
    transition: ease 0.5s;
}

.icon-hb span:nth-child(3) {
    top: 10px;
    transition: ease 0.5s;
}

.icon-hb span:nth-child(4) {
    top: 20px;
    transition: ease 0.5s;
    display: block;
}

.open .icon-hb span:nth-child(1) {
    top: 0;
    width: 0%;
    transition: ease 0.5s;
}

.open .icon-hb span:nth-child(2) {
    top: 10px;
    transform: rotate(45deg);
    transition: ease 0.5s;
}

.open .icon-hb span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
    transition: ease 0.5s;
}

.open .icon-hb span:nth-child(4) {
    top: 20px;
    width: 0%;
    transition: ease 0.5s;
}

/*MENU*/

.menu {
    position: fixed;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--accent);
    z-index: 2;
    opacity: 1;
    transition: ease 0.5s;
    overflow-y: hidden;
    overflow-x: hidden;
}

.menu__items {
    padding-top: 150px;
    scroll-behavior: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: ease 0.5s;
}

.menu__items a {
    font-family: 'silkscreen', cursive;
    font-size: 2em;
    opacity: 0;
    transition: ease 0.5s;
    color: white;

}

.menu__items a:hover {
    color: var(--secondary);
}

.open .menu__items a {
    transition: ease 0.5s;
    opacity: 1;
}

.open .menu {
    top: 0;
}

.open .hb {
    color: white;
}

.open .site-nav {
    z-index: 5;
}

.open .icon-hb span {
    background: white;
}

.open .moon {
    filter: invert(1);
}

.pro-menu {
    text-align: center;
}

.pro-menu a,
.for-menu a,
.fot-menu a,
.abt-menu a {
    color: var(--dark);

}

.pro-menu a:hover {
    color: var(--secondary);
    transition: ease 0.5s;
}


/* -------------------------------------------------------------------------------- */
/* ! NEWSLETTER */
/* -------------------------------------------------------------------------------- */

.mail {
    grid-column: 9/10;
}

/* -------------------------------------------------------------------------------- */
/* ! TNX */
/* -------------------------------------------------------------------------------- */

#tnx h2 {
    grid-column: 4/10;
    text-align: center;
    margin: 50px 0;
}

@media (min-width: 992px) {
    #tnx h2 {
        margin: 100px 0;
    }
}


/* -------------------------------------------------------------------------------- */
/* ? COVER */
/* -------------------------------------------------------------------------------- */

.cover__logo {
    grid-column: 3/11;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}


.logo3d {
    animation-name: rotate;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        filter: invert(0);
    }

    25% {
        transform: rotate(90deg);
        filter: invert(1);
    }

    50% {
        transform: rotate(180deg);
        filter: invert(0);
    }

    75% {
        transform: rotate(270deg);
        filter: invert(1);
    }

    100% {
        transform: rotate(360deg);
        filter: invert(0);
    }
}

.iot {
    grid-column: 1/13;
    text-align: center;
    margin-top: 50px;
    font-size: 3em;
    color: var(--accent);
}

.iot2 {
    font-size: 2.4em;
}

#logo h3 {
    margin: 50px 0;
    grid-column: 4/10;
    text-align: center;
}

/* -------------------------------------------------------------------------------- */
/* * IO */
/* -------------------------------------------------------------------------------- */

#io-1 h2,
#io-2 h2 {
    grid-column: 1/13;
    font-size: 4em;
    color: var(--accent);
    justify-self: center;
    margin-bottom: 50px;
}

#io-1 p,
#io-2 p {
    grid-column: 2/12;
    font-size: 1.2em;
    font-family: 'Silkscreen', cursive;
    text-align: center;
    margin-bottom: 50px;
}

#io-1 {
    display: none;
}

/* -------------------------------------------------------------------------------- */
/* ? DESIGN */
/* -------------------------------------------------------------------------------- */

#design {
    background: #ED1C24;
    background-position: center;
    background-size: cover;
    position: relative;
}

.d-img {
    grid-column: span 6;
    align-self: center;
    padding: 15%;
}

#design img {
    z-index: 1;
}

#design img:nth-child(5) {
    transform: rotate(90deg);
}

#design img {
    transition: ease 0.5s;
    filter: invert(1);
}

#design img:hover {
    filter: invert(0);
    transition: ease 0.5s;
}

.select {
    grid-column: 2/12;
    display: flex;
}

.select h2 {
    color: var(--light);
    font-size: 1.5em;
}

.select span {
    margin-top: 5px;
    height: 20px;
    width: 5px;
    background: var(--light);
    animation-name: designblink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes designblink {
    0% {
        background: var(--light);
    }

    50% {
        background: rgba(0, 0, 0, 0);
    }

    100% {
        background: var(--light);
    }
}

.select2 {
    grid-column: 2/12;
    display: flex;
}

.select2 h2 {
    color: var(--light);
    font-size: 1.5em;
}

.select2 span {
    margin-top: 5px;
    height: 20px;
    width: 5px;
    background: black;
    animation-name: designblink2;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes designblink2 {
    0% {
        background: black;
    }

    50% {
        background: rgba(0, 0, 0, 0);
    }

    100% {
        background: black;
    }
}

/* -------------------------------------------------------------------------------- */
/* ! DARK MODE */
/* -------------------------------------------------------------------------------- */

body.dark {
    background: #231F20;
    transition: 0.5s cubic-bezier(.93, .52, .94, .23);
}

.dark #formazione h2,
.dark #formazione p,
.dark #lavoro h2,
.dark #lavoro p {
    color: white;
}

.dark .moon {
    filter: invert(1);
}

.title2 {
    grid-column: 1/7;
    display: none;
    z-index: 3;
}

.title2 a {
    font-family: 'Silkscreen', cursive;
    color: white;
}

.title2 span {
    color: var(--accent);
    background: black;
}

.dark .title2 {
    display: block;
}

.dark .title {
    display: none;
}

.dark .io__headline {
    color: white;
}

.dark .cornicetta span {
    background: white;
}

.dark .hb span {
    background: white;
}

.dark .menu {
    background: #231F20;
}

.dark .pro-menu a {
    color: var(--accent);
}

.dark .select2 {
    grid-column: 2/12;
    display: flex;
}

.dark .select2 h2 {
    color: white;
    font-size: 1.5em;
}

.dark .select2 span {
    background: rgb(255, 255, 255);
    animation-name: whiteblink2;
}

.menu__title2 {
    display: none;
}

.menu__title2 a {
    font-family: 'Silkscreen', cursive;
    color: white;
}

.menu__title2 span {
    color: var(--accent);
    background: black;
}

.dark .menu__title {
    display: none;
}

.moon:hover {
    filter: drop-shadow(2px 0px 0px var(--accent));
}

@keyframes whiteblink2 {
    0% {
        background: rgb(255, 255, 255);
    }

    50% {
        background: rgba(0, 0, 0, 0);
    }

    100% {
        background: rgb(255, 255, 255);
    }
}

.dark #for-grafici img {
    filter: invert(1);
}

/* -------------------------------------------------------------------------------- */
/* ! FOOTER */
/* -------------------------------------------------------------------------------- */

footer {
    background: var(--secondary);
    padding-top: 50px;
    padding-bottom: 50px;
}

footer img {
    width: 50px;
    margin-top: 10px;
    margin-bottom: 50px;
    filter: invert(1);
}

footer h2,
footer h3,
footer h4,
footer a,
footer p,
footer li {
    color: white;
    font-family: 'Silkscreen', cursive;
}

footer.grid {
    margin-bottom: 0;
}


#foot h2 {
    grid-column: 2/12;
    text-align: center;
}

.footer {
    grid-column: 2/12;
}

#foot h3,
#foot p {
    font-size: 1em;
}

#foot h2,
#foot h3 {
    margin: 20px 0;
}

#foot h3 {
    margin-bottom: 40px;
}

#foot p {
    padding-left: 20px;
    margin: 10px 0;
    text-align: end;
}

.foot__item {
    padding: 30px 0;
}

/* ! Bottone Su */

#scrollButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: none;
    border: none;
}




/* -------------------------------------------------------------------------------- */
/* ! ABOUT.HTML */
/* -------------------------------------------------------------------------------- */

#skills .skills__ttl {
    grid-column: 2/12;
    padding: 0 0 0 0;
}

.skills__ttl h3 {
    color: white;
}

#skills h2 {
    grid-column: 2/12;
}

.io-img {
    grid-column: 1/13;
    width: 100%;
}

.dark .io-img {
    filter: invert(1);
}

#skills {
    background: var(--accent);
}

#skills img {
    filter: invert(1);
}

#skills h2 {
    color: white;
    margin-top: 30px;
    text-align: center;
}

#skills .skill {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20%;
}

#formazione {
    background: var(--accent);
    padding-bottom: 50px;
}

#formazione h2,
#formazione h3,
#formazione p {
    color: white;
}

#formazione h2,
#lavoro h2 {
    grid-column: 2/12;
    justify-self: start;
    font-size: 2em;
    margin-bottom: 30px;
}

#formazione h3,
#lavoro h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 20px;

}

#formazione p,
#lavoro p {
    margin: 8px 0;
    font-size: 1em;
}

.formazione,
.lavoro {
    grid-column: 2/12;
    justify-self: start;
}

.formazione__item,
.lavoro__item {
    padding: 0 0 20px 0;
}



/* -------------------------------------------------------------------------------- */
/* ! FORMARE.HTML */
/* -------------------------------------------------------------------------------- */

.cover-img {
    height: 60%;
    width: 100%;
}

#for-intro {
    background: #ED1C24;
}

#for-intro h3 {
    grid-column: 2/12;
    margin-bottom: 50px;
    color: white;
}

#for-intro p {
    grid-column: 2/12;
    font-weight: 500;
    color: white;
}

.cont {
    overflow: hidden;
}

#for-intro img {
    grid-column: 2/12;
    transition: ease-in-out 0.5s;
    align-self: center;
    cursor: pointer;
    margin-bottom: 50px;
}

#for-intro img:hover {
    transform: scale(100%);
}

#for-grafici img {
    grid-column: 2/12;
    margin-bottom: 50px;
}

#concept {
    background: #ED1C24;
}

.big #for-intro img {
    transform: scale(150%);
    transition: ease-in-out 0.5s;
}

#concept h3,
#concept p {
    color: #fff;
}

#concept img {
    grid-column: 2/12;
    margin-bottom: 50px;
    filter: invert(1);
}

.for-txt {
    grid-column: 2/12;
}

.for-txt p {
    margin-bottom: 30px;
}

.for-txt h3 {
    margin-bottom: 30px;
}

section#instagram {
    padding-bottom: 0;
}

.adapt {
    grid-column: 2/12;
    width: 100%;
    margin-bottom: 50px;
}

.post {
    grid-column: 1/13;
}

.post2 {
    grid-column: 1/13;
}

.dark #for-intro img {
    filter: invert(0);
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
    color: #fff;
}

/* Slideshow*/

.slideshow-container {
    position: relative;
    margin: auto;
    grid-column: 1/13;

}

.mySlides {
    display: none;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.text {
    display: none;
    color: #f2f2f2;
    font-size: 1em;
    font-family: 'Silkscreen', cursive;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    display: none;
    color: #f2f2f2;
    font-size: 1em;
    font-family: 'Silkscreen', cursive;
    position: absolute;
    top: 0;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        filter: invert(1);

    }

    to {
        filter: invert(0);
    }
}




/* -------------------------------------------------------------------------------- */
/* ! PRODUCT.HTML */
/* -------------------------------------------------------------------------------- */

#attaccaglie1,
#dya1,
#ciliege1 {
    background: var(--accent);
}

#attaccaglie1 h3,
#attaccaglie1 p,
#dya1 h3,
#dya1 p,
#ciliege1 h3,
#ciliege1 p {
    color: white;
}


#attaccaglie1 .dida {
    grid-column: 2/12;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.dida h3 {
    margin-bottom: 30px;
    margin-top: 30px;
}

.d2 img {
    width: 130%;
    margin-bottom: 20px;
}

.d1 img {
    width: 100%;
    margin-bottom: 20px;
}

#pro-carosello .io__headline {
    grid-column: 2/12;
}

#pro-carosello img {
    grid-column: 2/12;
    width: 100%;
}

section#att-carosello {
    padding: 0;
}

.dark .neg {
    filter: invert(1);
}

#dya1 img {
    grid-column: 2/12;
    width: 180%;
    filter: invert(1);
    align-self: center;
}

#dya2 img {
    grid-column: 2/12;
    width: 100%;
    margin-bottom: 30px;

}

#dya2 .dya-img2 {
    grid-column: 1/13;
    align-self: center;
    width: 180%;
    margin-left: -70px;
}

#cherry {
    margin-bottom: 50px;
}

#cherry.for-txt {
    grid-column: 2/12;
    margin-bottom: 50px;
}

#cherry img {
    grid-column: 2/12;
    width: 100%;
    margin-bottom: 50px;
}

.scocche {
    grid-column: 1/13;
}

#scocche .sco-img1 {
    grid-column: 2/12;
    width: 100%;
    justify-self: center;
    margin-bottom: 50px;
}

.dark #scocche .sco-img1 img {
    filter: invert(1);
}


/* -------------------------------------------------------------------------------- */
/* ! FOTOGRAFIA.HTML */
/* -------------------------------------------------------------------------------- */


@media (min-width: 768px) {

    .select {
        grid-column: 1/13;
    }

    .hb {
        grid-column: 12/13;
    }

    .moon {
        grid-column: 11/12;
        justify-self: end;
    }

    .iot {
        margin-top: 0;
    }

    #foot h2 {
        grid-column: 2/6;
        text-align: start;
    }

    .footer {
        grid-column: 6/12;
    }

    #foot h3 {
        margin-top: 0;
    }

    #foot p {
        text-align: start;
        padding: 0;
    }
}

@media (min-width: 992px) {

    .grid {
        margin-left: 240px;
    }

    #intro.grid {
        margin: 0;
    }

    #intro h1 {
        font-size: 5em;
    }

    #io-1 {
        display: grid;
    }

    #io-2 {
        display: none;
    }

    .cover__logo {
        grid-column: 1/13;
        padding: 10%;
        padding-top: 12%;
        margin-top: 0;
    }

    #logo {
        margin-top: 0;
        padding-top: 0;
    }

    .logo3d {
        padding: 50px;
        margin-top: -50px;
    }

    .title {
        display: none;
    }

    .menu__title {
        display: block;
    }

    .menu__title a {
        font-family: 'Silkscreen', cursive;
        color: white;
    }

    .menu__title span {
        color: var(--accent);
        background: black;
    }

    .pro-menu {
        text-align: end;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-left: 10px;
        padding-right: 0;
    }

    .abt-menu {
        margin-left: 80px;
    }

    .for-menu {
        margin-left: -5px;
    }

    .fot-menu {
        margin-left: 83px;
    }

    .menu a:hover {
        color: var(--secondary);
        transition: ease 0.5s;
    }

    .moon {
        grid-column: 12/13;
        justify-self: center;
        margin-top: 30px;
    }

    .hb {
        display: none;
    }

    .menu {
        top: 0;
        width: 240px;
        left: 0;
        background: var(--accent);
    }

    .menu__items {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        padding-top: 20px;
    }

    .menu__items a {
        line-height: 1.5em;
        opacity: 1;
    }

    .menu a {
        font-size: 1.2em;

    }

    .dark .menu__title2 {
        display: block;
    }

    .dark .title2 {
        display: none;
    }

    .io-img {
        grid-column: 4/10;
        width: 100%;
    }

    #skills .skills__ttl {
        grid-column: 2/12;
    }

    #skills .skill {
        grid-column: span 4;
    }

    #formazione h2,
    #lavoro h2 {
        grid-column: 2/7;
        font-size: 1.5em;
    }

    #formazione h3,
    #lavoro h3 {
        font-size: 1.2em;

    }

    .formazione,
    .lavoro {
        grid-column: 7/12;
    }

    .formazione__item,
    .lavoro__item {
        padding: 0 0 20px 0;
    }

    .for-txt {
        grid-column: 2/6;
    }

    #for-intro h2 {
        margin-bottom: 50px;
    }

    #for-intro img {
        grid-column: 8/12;
        align-items: center;
    }

    #for-intro img:hover {
        transform: scale(200%) translate(0, -20px);
        transition: ease-in-out 0.5s;
    }

    #for-grafici h3,
    #concept h3,
    #segnali h3 {
        grid-column: 2/6;
    }

    #for-grafici p,
    #concept p,
    #segnali p {
        grid-column: 2/6;
    }

    #for-grafici .for-img {
        grid-column: 8/12;
        margin-bottom: 50px;
        align-self: center;
    }

    #for-carousel {
        padding-left: 240px;
        padding-bottom: 0;
    }

    #concept .img-out1 {
        grid-column: 2/6;
        filter: invert(1);
    }

    #concept .img-out2 {
        grid-column: 8/12;
        align-self: center;
        filter: invert(1);
    }

    .text {
        display: block;
    }

    .numbertext {
        display: block;
    }

    .adapt {
        grid-column: 2/4;
        width: 100%;
        align-self: start;
    }

    #instagram p {
        padding-bottom: 50px;
    }

    .post {
        grid-column: 6/9;
    }

    .post2 {
        grid-column: 9/12;
    }

    #pro-carosello .slideshow-container {
        grid-column: 1/13;
    }

    #pro-carosello .io__headline {
        grid-column: 2/6;
    }

    #dya1 img {
        grid-column: 1/13;
        width: 100%;
    }

    .d2 img {
        grid-column: 1/13;
        width: 100%;
    }

    #attaccaglie1 .dida {
        grid-column: 2/12;
        display: flex;
        margin-top: 10%;
        align-items: start;
    }

    #dya2 .dya-img {
        grid-column: 7/12;
        align-self: center;
    }

    #dya2 .dya-img2 {
        grid-column: 2/13;
        justify-self: center;
        width: 100%;
    }

    #cherry .for-txt {
        grid-column: 2/6;
    }

    #cherry img {
        grid-column: 6/12;
        width: 100%;
        justify-self: center;
    }

    .cherryimg img {
        grid-column: 9/12;
    }

    #scocche .for-txt {
        grid-column: 2/6;
    }

    #scocche .sco-img1 {
        grid-column: 7/12;
        width: 100%;
        justify-self: center;
        align-self: center;
    }

    #scocche .slideshow-container {
        grid-column: 2/6;
    }

    #scocche .numbertext {
        color: black;
    }

    #scocche .prev,
    #scocche .next {
        color: black;
    }

    .scocche {
        grid-column: 8/11;
    }

    #tnx h2 {
        margin: 100px 0;
    }

}