@import 'style.css';


#bottom {

    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 50px;

}

#bottom h2 {
    font-size: 2rem;
    margin-top: 50px;
    width: 95%;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: #ffffffe7;
    text-shadow: 0px 0px 20px #000;
    text-align: center;
    z-index: 9;
}

#bottom h2 .highlight {
    font-weight: 500;
    position: relative;
    /* Important pour que ::before se place par rapport au texte */
    display: inline-block;
    /* Évite que le soulignage ne déborde */
}

#bottom h2 .highlight::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    z-index: -1;
    border-radius: 2px;
}

#bottom h2 .highlight.red::before {
    background: red;
}

#bottom h2 .highlight.scaly::before {
    background: linear-gradient(34deg, rgb(255 0 67) 0%, rgb(0 7 185) 88%);
}

#bottom img {
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
    left: 50%;
    height: 100%;
    width: auto;

    /* Masque en dégradé (haut transparent, bas opaque) */
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-position: top;

    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: top;
}


#startaccueil {
    width: 100%;
    min-height: 100vh;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 50px;
}

#ulaccueil {
    display: flex;
    justify-content: center;
    align-self: flex-start;
    flex-direction: column;
    gap: 25px;
    padding: 0 10px;
}

#ulaccueil li p {
    font-size: 1.2rem;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: #ffffffe7;
    position: relative;
    padding-left: 36px;
    /* espace pour l’icône */

}

li p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    animation: checkAppear 0.6s ease forwards;
}

li p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    animation: checkFade 0.6s ease forwards;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 52'><defs><linearGradient id='grad' x1='0%' y1='0%' x2='100%' y2='0%'><stop offset='0%' stop-color='%2300bfff'/><stop offset='30%' stop-color='%238a2be2'/><stop offset='60%' stop-color='%23ff1493'/><stop offset='100%' stop-color='%23ff4500'/></linearGradient></defs><path fill='none' stroke='url(%23grad)' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' stroke-dasharray='48' stroke-dashoffset='48' d='M14 27 l7 7 l17 -17'><animate attributeName='stroke-dashoffset' values='48;0' dur='0.4s' fill='freeze' begin='0.1s'/></path></svg>");
}

@keyframes checkFade {
    to {
        opacity: 1;
    }
}


#particles-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}



#cquoi {
    font-size: 1.8rem;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: #ffffffe7;
    text-shadow: 0px 0px 20px #000;
    width: 95%;
    z-index: 5;
    position: absolute;
    top: 10%;
    transform: translateX(-50%) translateY(-70px);
    left: 50%;
    text-align: center;
    transition: all 400ms linear;
}

#slogancontaint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-direction: column;
}

#slogancontaint p {
    font-size: 1.8rem;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: #ffffffe7;
    text-shadow: 0px 0px 20px #000;
    width: 95%;
    text-align: center;
    z-index: 5;
}




 .phone {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 25%;
    aspect-ratio: 9 / 19.5;
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #111, #222);

    border-radius: 20px;
    box-sizing: border-box;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),

        inset 0 0 10px rgba(255, 255, 255, 0.08),

        inset 0 0 30px rgba(255, 0, 128, 0.05);

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    z-index: 3;
}

.tablette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    aspect-ratio: 3 / 4;
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #111, #222);

    border-radius: 20px;
    box-sizing: border-box;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),

        inset 0 0 10px rgba(255, 255, 255, 0.08),

        inset 0 0 30px rgba(255, 0, 128, 0.05);

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    z-index: 2;
}

.tablette img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}

.tablette::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;

    border: 1px solid #fff;
    box-sizing: border-box;
    pointer-events: none;
  
    z-index: 2;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .10) inset,
        0 0 38px rgba(255, 0, 128, .10),
        0 0 64px rgba(0, 7, 185, .12);
}

.pc {
    position: absolute;
    top: 30%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 120%;
    aspect-ratio: 1.9 / 1;
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #111, #222);

    border-radius: 5px;
    box-sizing: border-box;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        
        inset 0 0 10px rgba(255, 255, 255, 0.08),
        
        inset 0 0 30px rgba(255, 0, 128, 0.05);
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  
    z-index: 1;
}

.pc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;

    border: 1px solid #fff;
    box-sizing: border-box;
    pointer-events: none;
  
    z-index: 2;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .10) inset,
        0 0 38px rgba(255, 0, 128, .10),
        0 0 64px rgba(0, 7, 185, .12);
}

.pc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}



.pc::after {
   
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: -2.5%;
    height: 16px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .05)),
        linear-gradient(0deg, #2a2a2a, #1a1a1a);
    box-shadow:
        0 12px 26px rgba(0, 0, 0, .45),
        inset 0 1px 2px rgba(255, 255, 255, .2);
    transform: translateZ(-10px);
}



.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}


.phone::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
  
    border: 1px solid #fff;
    box-sizing: border-box;
    pointer-events: none;
   
    z-index: 2;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .10) inset,
        0 0 38px rgba(255, 0, 128, .10),
        0 0 64px rgba(0, 7, 185, .12);
}

.pc,
.tablette,
.phone {
    background:
        linear-gradient(145deg, #111, #222),
        
        linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0) 40%) border-box;
    border: 1px solid rgba(255, 255, 255, .08);
}


.pc .glare,
.tablette .glare,
.phone .glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: .45;
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, .18) 0%,
            rgba(255, 255, 255, .06) 28%,
            rgba(255, 255, 255, 0) 60%);
    mask: linear-gradient(180deg, #000 70%, transparent 100%);
  
    transition: opacity .3s ease;
}

.pc:hover .glare,
.tablette:hover .glare,
.phone:hover .glare {
    opacity: .55;
}

#contentmockups {
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: min(1150px, 92vw);
    aspect-ratio: 16 / 9;
    margin: 4rem auto;
    perspective: 1400px;
    transform-style: preserve-3d;

    --rx: 8deg;

    --ry: -18deg;

    transform: translateY(-10%) rotateX(var(--rx)) rotateY(var(--ry));
    border-radius: 24px;
    --mx: 50%;
    --my: 50%;
}



.pc::after,
.tablette .glare,
.phone .glare {
 
    background-image:
        linear-gradient(to bottom,
            rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 60%),
        radial-gradient(500px 260px at var(--mx) calc(var(--my) - 10%),
            rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 60%);
}


#contentmockups::after {
    content: "";
    position: absolute;
    inset: auto 6% 2% 6%;
    height: 26%;
    background: radial-gradient(60% 60% at 50% 30%,
            rgba(0, 0, 0, .35) 0%,
            rgba(0, 0, 0, .18) 40%,
            rgba(0, 0, 0, 0) 80%);
    transform: translateZ(-250px) rotateX(90deg);
    pointer-events: none;
}


.pc,
.tablette,
.phone {

    transform-style: preserve-3d;
    transition: transform .35s ease, filter .35s ease;
    
    filter: drop-shadow(0 35px 30px rgba(0, 0, 0, .45));
}


.pc,
.tablette,
.phone {
    transition: left 900ms cubic-bezier(0.22, 1, 0.36, 1), transform .35s ease, filter .35s ease;
    will-change: left;
}







.tablette::after,
.phone::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, .10), transparent 40%),
        linear-gradient(-45deg, transparent 60%, rgba(255, 255, 255, .06));
    mix-blend-mode: screen;
    pointer-events: none;
}


@media (prefers-reduced-motion: no-preference) {

    .pc,
    .tablette,
    .phone {
        animation: float 6s ease-in-out infinite;
    }

    .tablette {
        animation-delay: .2s
    }

    .phone {
        animation-delay: .4s
    }

    @keyframes float {

        0%,
        100% {
            transform: translateZ(var(--z, 0)) translateY(0) rotateX(0) rotateY(var(--ryc, 0))
        }

        50% {
            transform: translateZ(calc(var(--z, 0) + 10px)) translateY(-6px) rotateX(.4deg) rotateY(calc(var(--ryc, 0) + .6deg))
        }
    }
}


.pc {
    --z: 0px;
    --ryc: 0deg;
}

.tablette {
    --z: 70px;
    --ryc: -2deg;
}

.phone {
    --z: 140px;
    --ryc: -4deg;
}


@media (hover: none) {
    #contentmockups {
        perspective: 1000px;
    }
} 


#face {
    width: 100%;
    position: absolute;
    bottom: -10%;
    right: -10%;
    height: auto;
    z-index: 5;
}


#halomain {
    height: 70%;
    width: 100%;
    filter: blur(150px) brightness(1);
    position: absolute;
    bottom: 0;
    right: 0;
    background: radial-gradient(ellipse at 0% 100%, rgb(0 78 255) 0%, rgb(255 0 170) 20%, rgb(255 0 0 / 71%) 35%, rgb(0 0 255 / 85%) 60%, #00ff9d00 80%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    opacity: 1;
    border-radius: 50%;
}








.coqueaccueil {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 70vh;
    aspect-ratio: 9 / 19.5;
    /* border: 1px solid #fff; */
    /* format téléphone */
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #111, #222);
    /* matière sombre */
    border-radius: 40px;
    box-sizing: border-box;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        /* ombre portée */
        inset 0 0 10px rgba(255, 255, 255, 0.08),
        /* reflet interne doux */
        inset 0 0 30px rgba(255, 0, 128, 0.05);
    /* glow léger interne */
    animation: entreeCoque 1s ease-out forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* padding: 5px; */
}



.coqueaccueil::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    /* légèrement plus petit que la coque */
    border: 1px solid #fff;
    box-sizing: border-box;
    pointer-events: none;
    /* ne bloque pas les clics/touch */
    z-index: 2;
}

.coqueaccueil video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}

/* .coqueaccueil img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
} */

/* .decoblocdesc {
    height: 100%;
    width: 100%;
    animation: pulseHalo 6s ease-in-out infinite;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 0% 100%, rgb(0 78 255) 0%, rgb(255 0 0) 20%, rgb(255 0 0 / 71%) 35%, rgb(0 0 255 / 29%) 60%, #00ff9d00 80%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    opacity: 1;
}


.decoblocdesc::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 0, 255, 0.2) 20%,
            transparent 50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.decoblocdesc::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 40% 90%, rgba(0, 255, 150, 0.08), transparent 60%),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 0, 0.08), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(255, 100, 255, 0.07), transparent 50%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}  */


.decoblocdesc {
    min-height: 100vh;
    width: 200%;
    animation: pulseHalo 6s ease-in-out infinite;
    position: absolute;
    bottom: 0;
    left: 0;

    background: radial-gradient(ellipse at 0% 100%, rgb(13 0 255 / 50%) 0%, rgb(255 0 0) 20%, rgb(0 26 255 / 25%) 35%, rgb(130 130 255 / 29%) 60%, #00ff9d00 80%);
}

.decoblocdesc::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 0, 255, 0.2) 20%,
            transparent 50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.decoblocdesc::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 40% 90%, rgba(0, 255, 150, 0.08), transparent 60%),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 0, 0.08), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(255, 100, 255, 0.07), transparent 50%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}


.textBloc {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
}

.textBloc h2 {
    font-size: 4rem;
    color: #fff;
    font-family: var(--font-fam-one);
    font-weight: 600;
    margin-left: 20px;
    position: relative;
    display: inline-block;
    text-shadow: -8px -2px 16px #000;
}


.pointi {
    position: relative;
    display: inline-block;
    color: inherit;
    /* pour garder le texte */
}

.pointi::after {
    content: '';
    position: absolute;
    top: 0.15em;
    left: 50%;
    transform: translateX(-50%);
    width: 0.22em;
    height: 0.22em;
    border-radius: 50%;
    background: #ff3472;
}

.textBloc h3 {
    font-size: 2rem;
    font-family: var(--font-fam-one);
    font-weight: 600;
    margin-left: 60px;

}

.blur-text-wrapper {
    position: relative;
    display: inline-block;
}

.blur-background,
.gradient-text {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5em;
    /* ajuste à ta taille */
    font-weight: bold;
    background: #9e83eb;
    background-clip: text;
    color: transparent;
}

.blur-background {
    filter: blur(1px);
    z-index: 1;
}

.gradient-text {
    position: relative;
    z-index: 2;
}

.textdescribgestion,
.textdescribportfolio,
.textdescrib {
    z-index: 5;
    position: absolute;
    left: 0;
    bottom: 5%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.textdescribgestion p,
.textdescribportfolio p,
.textdescrib p {
    font-size: 1.8rem;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: #ffffffe7;
    text-shadow: 0px 0px 20px #000;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
    text-align: center;
}

.textdescribgestion p.active,
.textdescribportfolio p.active,
.textdescrib p.active {
    opacity: 1;
    display: block;
}


.sloganvideo {
    font-size: 1.8rem;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: #ffffffe7;
    text-shadow: 0px 0px 20px #000;
    width: 90%;
    transform: translateX(-50%);
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 5;
}

.slidergestion,
.sliderportfolio,
.slider-inner {
    display: flex;
    height: 100%;
    width: 100%;
    /* occupe tout l’espace interne */
    transition: transform 0.5s ease;
}

.slidergestion img,
.slidergestion video,
.sliderportfolio img,
.slider-inner img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    /* arrondis interne */
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}



.indicatorsgestion,
.indicatorsportfolio,
.indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1em;
    z-index: 10;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
}

.indicatorsgestion .dot,
.indicatorsportfolio .dot,
.indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ffffff33;
    transition: all 0.3s ease;
}

.indicatorsgestion .dot.active,
.indicatorsportfolio .dot.active,
.indicators .dot.active {
    width: 30px;
    background: #fff;
}


@media (min-width: 1200px) {
        #cquoi {
        font-size: 2.8rem;

    }
        #bottom h2 {
        font-size: 2.5rem;
        width: 40%;
        margin-left: 50%;
    }
}

@media (min-width: 1024px) {


    #contentmockups {
        width: 40%;
        left: auto;
        right: 10%;
    }

    #cquoi {
        left: 31%;
        top: 6%;
        width: 40%;
        text-align: start;
        font-size: 2.1rem;
    }

    #ulaccueil {
        margin-left: 10%;
    }

    #ulaccueil li p {
        padding-left: 56px;
        font-size: 2rem;
    }

    #ulaccueil li p::before {
        height: 50px;
        width: 50px;
    }


    .coqueaccueil {
        height: 80%;
        width: auto;
    }

    .textBloc {
        left: 40%;
        top: 10%;
    }

    .textBloc h2 {
        font-size: 6rem;
        text-shadow: -8px -2px 16px #00000099;
    }

    .textBloc h3 {
        font-size: 3rem;
    }

    .indicatorsgestion,
    .indicatorsportfolio,
    .indicators {
        left: 65%;
        bottom: 30%;
    }

    .textdescribgestion,
    .textdescribportfolio,
    .textdescrib {
        left: 15%;
        bottom: 40%;
    }

    .textdescribgestion p,
    .textdescribportfolio p,
    .textdescrib p {
        font-size: 2.5rem;
    }

    .sloganvideo {
        font-size: 2.5rem;
        left: 65%;
        bottom: 40%;
        width: 50%;
    }

    #bottom {
        gap: 100px;
        justify-content: center;
        align-items: center;
    }

    #bottom h2 {
        font-size: 2rem;
        width: 40%;
        margin-left: 50%;
    }

    #bottom img {
        left: 25%;
        width: 50%;
        height: auto;

        /* Masque dégradé */
        -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%),
            linear-gradient(to left, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-composite: destination-in;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: cover;

        mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%),
            linear-gradient(to right, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
        mask-composite: intersect;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: cover;
    }

    #abonnestoi {
        margin-left: 50%;
    }

}