:root {
    --color: #000000;
    --font-family: 'Bruno Ace', sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

/* Custom, iPhone Retina */
/* @media only screen and (min-width : 320px) { */

html {
    overflow-x: hidden;
}

.main-body {
    width: 100%;
    height: 3767px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;


    background-color: var(--color);
    color: #fff;
    background: url("/images/Background-phone.png") center top no-repeat,
    var(--color) url(images/soyfki_black_background_with_space_stars_39beeada-6cde-4424-9428-5f920b83eb2d.png);
}

.presentation {
    width: 90vw;
    position: absolute;
    text-align: center;
    text-align: center;
    color: aliceblue;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.titre {
    font-family: var(--font-family);
    position: absolute;
    top: -100px; /* Position initiale hors de l'écran */
    left: 50%; /* Position horizontale au centre */
    transform: translateX(-50%); /* Pour centrer le titre */
    opacity: 0; /* Opacité initiale à 0% */
    animation: apparitionTitre 1.5s ease-out forwards 500ms;
    text-shadow: -2px -2px 5px black, 2px -2px 5px black, -2px 2px 5px black, 2px 2px 5px black;
}

@keyframes apparitionTitre {
    0% {
        top: -100px; /* Position initiale hors de l'écran */
        opacity: 0; /* Opacité initiale à 0% */
        transform: translateX(-50%) translateY(0); /* Translation verticale initiale */
    }
    100% {
        top: 15px; /* Position finale */
        opacity: 1; /* Opacité finale à 100% */
        transform: translateX(-50%) translateY(0); /* Translation verticale finale */
    }
}

.pag1 {
    position: absolute;
    text-align: center;
    width: 80vw;
    margin-top: 120px;
    left: -100%; /* Position initiale hors de l'écran à gauche */
    transform: translateY(-50%); /* Pour centrer l'élément verticalement */
    opacity: 0; /* Opacité initiale à 0% */
    animation: apparitionPag1 1.5s ease-out forwards 1000ms; /* Ajout du délai */
    text-shadow: -2px -2px 5px black, 2px -2px 5px black, -2px 2px 5px black, 2px 2px 5px black;
}

@keyframes apparitionPag1 {
    0% {
        left: -100%; /* Position initiale hors de l'écran à gauche */
        opacity: 0; /* Opacité initiale à 0% */
        transform: translateY(-50%); /* Translation verticale initiale */
    }
    100% {
        left: 5%; /* Position finale */
        opacity: 1; /* Opacité finale à 100% */
        transform: translateY(-50%); /* Translation verticale finale */
        filter: drop-shadow(0 0 5px black);
    }
}

.pag2 {
    position: absolute;
    text-align: center;
    width: 80vw;
    margin-top: 280px;
    left: -100%; /* Position initiale hors de l'écran à gauche */
    transform: translateY(-50%); /* Pour centrer l'élément verticalement */
    opacity: 0; /* Opacité initiale à 0% */
    animation: apparitionPag2 1.5s ease-out forwards 1000ms; /* Ajout du délai */
    text-shadow: -2px -2px 5px black, 2px -2px 5px black, -2px 2px 5px black, 2px 2px 5px black;
}

@keyframes apparitionPag2 {
    0% {
        left: 200%; /* Position initiale hors de l'écran à gauche */
        opacity: 0; /* Opacité initiale à 0% */
        transform: translateY(-50%); /* Translation verticale initiale */
    }
    100% {
        left: 5%; /* Position finale */
        opacity: 1; /* Opacité finale à 100% */
        transform: translateY(-50%); /* Translation verticale finale */
        filter: drop-shadow(0 0 5px black);
    }
}

.pag3 {
    position: absolute;
    text-align: center;
    width: 80vw;
    margin-top: 415px;
    left: -100%; /* Position initiale hors de l'écran à gauche */
    transform: translateY(-50%); /* Pour centrer l'élément verticalement */
    opacity: 0; /* Opacité initiale à 0% */
    animation: apparitionPag3 1.5s ease-out forwards 1000ms; /* Ajout du délai */
    text-shadow: -2px -2px 5px black, 2px -2px 5px black, -2px 2px 5px black, 2px 2px 5px black;
}

@keyframes apparitionPag3 {
    0% {
        left: -100%; /* Position initiale hors de l'écran à gauche */
        opacity: 0; /* Opacité initiale à 0% */
        transform: translateY(-50%); /* Translation verticale initiale */
    }
    100% {
        left: 5%; /* Position finale */
        opacity: 1; /* Opacité finale à 100% */
        transform: translateY(-50%); /* Translation verticale finale */
        filter: drop-shadow(0 0 5px black);
    }
}

.down-animation-container{
    display: none;
}

.container {
    width: 100vw;
    height: 350px;
    position: absolute;
    margin-top: 490px;
    margin-left: 0;
}

.path {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100vw;
    height: 450px;
}

.word {
    position: absolute;
    font-size: 16px;
    opacity: 30%;
    transition: opacity 0.5s linear;
    padding: 0 1vw;
    font-family: var(--font-family);
}

.spaceship {
    margin-top: 960px;
    width: 222px;
    height: 80px;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;

}

#ssfront {
    margin-top: 10px;
    height: 80px;
    width: auto;
}

#ssback {
    height: 80px;
    width: auto;

}

dialog {
    z-index: 999;
    height: 90vh;
    width: 90vw;
}

dialog::backdrop {
    opacity: .5;
    background-color: rgb(0, 0, 0);
}

.caroussel-title-main {
    position: absolute;
    font-family: var(--font-family);
    color: #fff;
    text-shadow: -2px -2px 5px black, 2px -2px 5px black, -2px 2px 5px black, 2px 2px 5px black;
    text-align: center;
    font-size: 18px;
}

.caroussel-title1 {
    margin-top: 1083px;
}

.caroussel-title2 {
    margin-top: 1356px;
}

.caroussel-title3 {
    margin-top: 1940px;
}

.caroussel-title4 {
    margin-top: 2266px;
}

.caroussel-title5 {
    margin-top: 2988px;
}

a.button {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
}
.button {
    bottom: 10px;
    right: 10px;
    border-radius: 50px;
    background-color: #AA60AD;
    box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.25), -3px -4px 4px 0px rgba(0, 0, 0, 0.25) inset, 3px 4px 4px 0px rgba(255, 255, 255, 0.15) inset;
    width: 96px;
    height: 30px;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 10;
    overflow: hidden;
    user-select: none;
}

.button-alt {
    bottom: 10px;
    right: 10px;
    border-radius: 50px;
    background-color: #AA60AD;
    box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.25), -3px -4px 4px 0px rgba(0, 0, 0, 0.25) inset, 3px 4px 4px 0px rgba(255, 255, 255, 0.15) inset;
    width: 30px;
    height: 30px;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 10;
    overflow: hidden;
    user-select: none;
}

.button-zoom {
    margin: auto;
    width: 20px;
}


.button:active, .button-alt:active {
    background-color: #673069;
}

.button:active > .button-arrow {
    width: 25%;
}

@media (hover: hover) {
    .button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -5%;
        width: 5%;
        height: 100%;
        filter: blur(10px);
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    }

    .button:hover::before {
        animation: reflet 2s linear infinite, reflet-delay 3s linear infinite;
    }
}

@media (hover: hover) {
    .button-alt::before {
        content: "";
        position: absolute;
        top: 0;
        left: -5%;
        width: 5%;
        height: 100%;
        filter: blur(10px);
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 1), transparent);
    }

    .button-alt:hover::before {
        animation: reflet 1s linear infinite, reflet-delay 3s linear infinite;
    }
}

@keyframes reflet {
    from {
        left: -5%;
    }

    to {
        left: 105%;
    }
}

.button-word {
    position: absolute;
    height: 60%;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 8%;
    font-size: 13px;
}

.button-arrow {
    position: absolute;
    height: auto;
    width: 20%;
    margin-left: 73%;
    transition-property: height;
    transition-duration: .2s;
    transition-delay: 0s;
    transition-timing-function: ease-out;
}


.caroussel-wrapper > #wrapper {
    width: calc(288px + 1px);
    height: calc(224px + 1px);
    flex-shrink: 0;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: absolute;
    background: linear-gradient(139deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-backdrop-filter: blur(10px);
}

#caroussel-wrapper1 {
    width: 288px;
    height: 224px;
    margin-top: 1110px;
}

#caroussel-wrapper2 {
    width: 288px;
    height: 224px;
    margin-top: 50px;
}

#caroussel-wrapper3 {
    width: 288px;
    height: 224px;
    margin-top: 360px;
}

#caroussel-wrapper4 {
    width: 288px;
    height: 224px;
    margin-top: 100px;
}

#caroussel-wrapper5 {
    width: 288px;
    height: 224px;
    margin-top: 500px;
}



.caroussel-fond {
    position: absolute;

    width: 288px;
    height: 224px;

    color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid transparent;
    background: linear-gradient(148deg, #FFF 0%, rgba(255, 255, 255, 0.20) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.caroussel-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 288px;
    height: 224px;
}

.frame-container {
    position: absolute;
    width: 224px;
    height: 126px;
    margin-top: 19px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frame {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slide {
    min-width: 224px;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.img {
    max-width: 224px;
    max-height: 126px;
}

.prev-translation {
    transform: translateX(-100%);
}

.next-translation {
    transform: translateX(100%);
}

.prev-rounds {
    transform: translateX(-20px);
}

.next-rounds {
    transform: translateX(20px);
}

.rounds {
    transition-property: all;
    transition-duration: 500ms;

}

.arrows {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 288px;
    height: 224px;
    z-index: 6;
}

.arrow-l {
    margin-left: 10px;
    width: 20px;
    height: auto;
    transform: rotate(180deg);
}

.arrow-r {
    margin-left: 230px;
    width: 20px;
    height: auto;
}

.caroussel-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 240px;
    height: 32px;
    margin-top: 154px;
    text-align: center;
}

.ct {
    font-size: 16px;
    font-family: var(--font-family);
    padding-bottom: 3px;
    transition-property: opacity;
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
    width: 100%;
}

.line {
    width: 240px;
    background: linear-gradient(89deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.70) 53.13%, rgba(255, 255, 255, 0.00) 100%);
    height: 1px;
    border: 0;
}

.slider-dots {
    width: 112px;
    height: 12px;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 198px;
}

.rounds {
    border-radius: 60%;
    width: 12px;
    height: 12px;
    background-color: #fff;
    transition: left 0.5s ease, opacity 0.5s ease;
}

#round1 {
    opacity: 0%;
}

#round2 {
    opacity: 50%;
}

#round3 {
    opacity: 100%;
}

#round4 {
    opacity: 50%;
}

#round5 {
    opacity: 30%;
}

#round6 {
    opacity: 0%;
}

.popup-img-wrapper {
    max-width: 90vw;
    max-height: 90vh;
}

#popup-img,
#popup-src, 
.picture {
    max-width: 90vw;
    max-height: 90vh;
}

.popup-cv-img {
    max-width: 80vw;
    max-height: 80vh;
}

#popup-image, 
#popup-cv,
#popup-cv-video {
    background-color: rgba(0, 0, 0, 0.50);
    border: 1px solid #FFF;
    border-radius: 2%;
    backdrop-filter: blur(5px);
    overflow: hidden;
    margin: auto;
    width: 95vw;
    height: 95vh;
}

.download {
    width: 5vw;
}

#close-button,
#close-button-cv,
#close-button-cv-video {
    position: absolute;
    top: 0;
    right: 0;
    height: 10vw;
    width: 10vw;
    background-image: url(images/close.svg);
    background-size: cover;
}

.waiting-video {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 20px;
    color: #FFF;
}

.popup-wrapper {
    width: 100%;
    height: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.whaleanimation {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1650px;
}

.whale {
    width: 208px;
    height: 128.39px;
}

.dotsanimation {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2540px;
    margin-left: 25px;
    overflow-x: hidden;
}

.dots {
    width: 649px;
    height: 419.51px;
}

.logos {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    gap: 6px;
}

#cv,
#cv-video,
.lkd,
.mail {
    width: 42px;
    height: auto;
    cursor: pointer;
}

.planet {
    position: absolute;
    margin-top: 3350px;
    margin-left: -490px;
    width: 320px;
    height: auto;
    animation-duration: 80s;
    animation-timing-function: linear;
    animation-name: rotation;
    animation-iteration-count: infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.astro {
    bottom: 0;
    position: absolute;
    width: 160px;
    height: 225.88px;

    filter: drop-shadow(0 0 10px #abe4f5);

    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-name: respiration;
    animation-iteration-count: infinite;
}

@keyframes respiration {
    from {
        filter: drop-shadow(0 0 10px #abe4f5);
    }

    50% {
        filter: drop-shadow(0 0 35px #abe4f5);
    }

    to {
        filter: drop-shadow(0 0 10px #abe4f5);
    }
}

.page-body {
    width: 100%;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: var(--color);
    color: #fff;
    background: url("/images/background-page.png") center top no-repeat,
    var(--color) url(images/soyfki_black_background_with_space_stars_39beeada-6cde-4424-9428-5f920b83eb2d.png);
}

.page-title {
    font-family: var(--font-family);
    text-align: center;
    text-shadow: -2px -2px 5px black, 2px -2px 5px black, -2px 2px 5px black, 2px 2px 5px black;
    margin-top: 70px;
}

.arrow-back {
    transform: rotate(180deg);
    left: 20px;
    top: 20px;
    position: absolute;
}

.img-page{
    width: 250px;
    height: auto;
    margin: auto;
    margin-top: 30px;
}

.page-link {
    font-weight: bold;
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    margin-bottom: 10px;
    text-shadow: -2px -2px 5px black, 2px -2px 5px black, -2px 2px 5px black, 2px 2px 5px black;
}

.page-link::before, .page-link::after {
    content: "\2192  ";
}

.page-link::after {
    content: " \2190";
}

.page-link:hover {
    text-decoration: underline;
}

.page-pag {
    text-align: center;
    width: 90%;
    margin-top: 15px;
    text-shadow: -2px -2px 5px black, 2px -2px 5px black, -2px 2px 5px black, 2px 2px 5px black;
}

.last-pag {
    margin-bottom: 20px;
}



/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {

    .main-body {
    background: url("/images/Background-enlarge-phone2.png") center top no-repeat,
    var(--color) url(images/soyfki_black_background_with_space_stars_39beeada-6cde-4424-9428-5f920b83eb2d.png);
    }

    .container {
        margin-left: 6vw;
        margin-top: 450px;
    }

    .presentation{
        margin-top: 20px;
    } 
    
    @keyframes apparitionTitre {
        0% {
            top: -100px; /* Position initiale hors de l'écran */
            opacity: 0; /* Opacité initiale à 0% */
            transform: translateX(-50%) translateY(0); /* Translation verticale initiale */
        }
        100% {
            top: 25px; /* Position finale */
            opacity: 1; /* Opacité finale à 100% */
            transform: translateX(-50%) translateY(0); /* Translation verticale finale */
        }
    }
    
    .pag1 {
        margin-top: 120px;        
    }
    
    .pag2 {
        margin-top: 230px;
    }
    
    .pag3 {
        margin-top: 325px;
    }

    .spaceship {
        margin-top: 940px;
    
    }
    
    .whaleanimation{
        margin-top: 1750px;
    }

    .planet {
        margin-top: 3280px;
        margin-left: -560px;
    }

    .dotsanimation {
        margin-top: 2565px;
        margin-left: 8px;
    }

    .logos {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        bottom: 20px;
        right: 20px;
        z-index: 5;
        gap: 10px;
    }   
    
    #cv,
    #cv-video,
    .lkd,
    .mail {
        width: 52px;
        height: auto;
    }   
    
    .caroussel-title-main {
        font-size: 18px;
    }
    
    .caroussel-title1 {
        margin-top: 1044px;
    }
    
    .caroussel-title2 {
        margin-top: 1410px;
    }
    
    .caroussel-title3 {
        margin-top: 1930px;
    }
    
    .caroussel-title4 {
        margin-top: 2304px;
    }
    
    .caroussel-title5 {
        margin-top: 2900px;
    }

    .button {
        width: 116px;
        height: 42px;
    }
    
    .button-alt {
        width: 42px;
        height: 42px;
    }
    
    .button-zoom {
        margin: auto;
        width: 28px;
    }
    
    .button-word {
        font-size: 15px;
    }       
    
    .caroussel-wrapper > #wrapper {
        width: calc(404px + 1px);
        height: calc(314px + 1px);
        
    }
    
    #caroussel-wrapper1 {
        width: 404px;
        height: 314px;
        margin-top: 1070px;
    }
    
    #caroussel-wrapper2 {
        width: 404px;
        height: 314px;
        margin-top: 50px;
    }
    
    #caroussel-wrapper3 {
        width: 404px;
        height: 314px;
        margin-top: 205px;
    }
    
    #caroussel-wrapper4 {
        width: 404px;
        height: 314px;
        margin-top: 60px;
    }
    
    #caroussel-wrapper5 {
        width: 404px;
        height: 314px;
        margin-top: 285px;
    } 
        
    .caroussel-fond {    
        width: 404px;
        height: 314px;
    }
    
    .caroussel-container {
        width: 404px;
        height: 314px;
    }
    
    .frame-container {
        width: 314px;
        height: 176px;
        margin-top: 19px;
    }
    
    .slide {
        min-width: 314px;
        min-height: 176px;
    }
    
    .img {
        max-width: 314px;
        max-height: 176px;
    }
    
    .prev-rounds {
        transform: translateX(-20px);
    }
    
    .next-rounds {
        transform: translateX(20px);
    }
    
    .arrows {
        position: absolute;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 404px;
        height: 314px;
        z-index: 6;
    }
    
    .arrow-l {
        width: 28px;
    }
    
    .arrow-r {
        margin-left: 333px;
        width: 28px;
    }
    
    .caroussel-title {
        width: 336px;
        height: 44px;
        margin-top: 216px;
    }
    
    .ct {
        font-size: 22px;
        padding-bottom: 4px;
    }
    
    .line {
        width: 336px;
    }
    
    .slider-dots {
        width: 156px;
        height: 16px;
        gap: 12px;
        margin-top: 278px;
    }
    
    .rounds {
        width: 16px;
        height: 16px;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {

    .container {
        width: 920px;
        margin-left: 20vw;
    }

    .titre {
        font-size: 30px;
    }

    .pag1 {
        margin-top: 120px;   
        font-size: 14px;     
    }
    
    .pag2 {
        margin-top: 225px;
        font-size: 14px; 
    }
    
    .pag3 {
        margin-top: 325px;
        font-size: 14px; 
    }

    .planet {
        margin-top: 3240px;
        margin-left: -960px;
        width: 420px;
    }

}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {

    .main-body {
        width: 100%;
        height: 11272px;
        position: relative;

        background-color: var(--color);
        color: #fff;
        background: url("/images/Background-enlarge-2.jpg") center top no-repeat,
        var(--color) url(images/soyfki_black_background_with_space_stars_39beeada-6cde-4424-9428-5f920b83eb2d.png);
        background-size: auto 100%;
    }

    .down-animation-container {
        display: block;
        position: relative;
        height: 138px;
        width: auto;
        margin-top: 560px;
    }

    .down-arrow-container {
        display: flex;
        text-align: center;
        flex-direction: column;
        position: relative;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: auto;
        top: 0;

        animation-duration: 6s;
        animation-timing-function: ease-in-out;
        animation-name: downArrow;
        animation-iteration-count: infinite;
    }

    @keyframes downArrow {
        from {
            height: 50px;
        }
        50% {
            height: 120px;
        }
        to {
            height: 50px;
        }
    }

    .down-arrow-dot {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #fff;
        position: absolute;
        top: -5px;
    }

    .down-arrow-line {
        position: absolute;
        height: 100%;
        width: 8px;
        background-color: #fff;
    }

    .down-arrow {
        position: absolute;
        transform: rotate(90deg);
        width: 30px;
        bottom: -18px;
    }


    .presentation{
        margin-top: 30px;
    } 

    .titre {
        font-size: 50px;
    }

    .pag1 {
        margin-top: 160px;   
        font-size: 18px;     
    }
    
    .pag2 {
        margin-top: 310px;
        font-size: 18px; 
    }
    
    .pag3 {
        margin-top: 440px;
        font-size: 18px; 
    }

    .container {
        width: 1320px;
        margin-left: 26vw;
        margin-top: 1290px;
    }
    
    .word {
        font-size: 20px;
    }

    .spaceship {
        margin-top: 2680px;
        width: auto;
        height: 180px;
    
    }
    
    #ssfront {
        margin-top: 22px;
        height: 180px;
    }
    
    #ssback {
        height: 180px;
    
    }

    .whaleanimation {
        margin-top: 5450px;
    }
    
    .whale {
        width: 468px;
        height: auto;
    }

    .dotsanimation {
        margin-top: 7900px;
        margin-left: 45px;
    }
    
    .dots {
        width: 1732px;
        height: auto;
    }

    .planet {
        margin-top: 9900px;
        margin-left: -1590px;
        width: 1080px;
    }

    .astro {
        width: 360px;
        height: auto;
    }    

    .logos {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        bottom: 20px;
        right: 20px;
        z-index: 5;
        gap: 10px;
    }   
    
    #cv,
    #cv-video,
    .lkd,
    .mail {
        width: 62px;
        height: auto;
    }    

    .caroussel-title-main {
        font-size: 24px;
    }
    
    .caroussel-title1 {
        margin-top: 3200px;
    }
    
    .caroussel-title2 {
        margin-top: 4208px;
    }
    
    .caroussel-title3 {
        margin-top: 6096px;
    }
    
    .caroussel-title4 {
        margin-top: 7104px;
    }
    
    .caroussel-title5 {
        margin-top: 8912px;
    }

    .button {
        width: 262px;
        height: 94px;
        right: 20px;
        bottom: 20px;
    }
    
    .button-alt {
        width: 94px;
        height: 94px;
        right: 20px;
        bottom: 20px;
    }
    
    .button-zoom {
        margin: auto;
        width: 64px;
    }
    
    .button-word {
        font-size: 34px;
    }       
    
    .caroussel-wrapper > #wrapper {
        width: calc(909px + 1px);
        height: calc(708px + 1px);
        
    }
    
    #caroussel-wrapper1 {
        width: 909px;
        height: 708px;
        margin-top: 2540px;
    }
    
    #caroussel-wrapper2 {
        width: 909px;
        height: 708px;
        margin-top: 300px;
    }
    
    #caroussel-wrapper3 {
        width: 909px;
        height: 708px;
        margin-top: 1180px;
    }
    
    #caroussel-wrapper4 {
        width: 909px;
        height: 708px;
        margin-top: 300px;
    }
    
    #caroussel-wrapper5 {
        width: 909px;
        height: 708px;
        margin-top: 1100px;
    } 
        
    .caroussel-fond {    
        width: 909px;
        height: 708px;
    }
    
    .caroussel-container {
        width: 909px;
        height: 708px;
    }
    
    .frame-container {
        width: 708px;
        height: 396px;
        margin-top: 48px;
    }
    
    .slide {
        min-width: 708px;
        min-height: 396px;
    }
    
    .img {
        max-width: 708px;
        max-height: 396px;
    }
    
    .prev-rounds {
        transform: translateX(-62px);
    }
    
    .next-rounds {
        transform: translateX(62px);
    }
    
    .arrows {
        width: 909px;
        height: 706px;
    }
    
    .arrow-l {
        width: 64px;
        margin-left: 20px;
    }
    
    .arrow-r {
        margin-left: 741px;
        width: 64px;
    }
    
    .caroussel-title {
        width: 756px;
        height: 100px;
        margin-top: 486px;
    }
    
    .ct {
        font-size: 50px;
        padding-bottom: 9px;
    }
    
    .line {
        width: 756px;
    }
    
    .slider-dots {
        width: 352px;
        height: 36px;
        gap: 28px;
        margin-top: 626px;
    }
    
    .rounds {
        width: 36px;
        height: 36px;
    }

    .img-page{
        width: 450px;
    }

}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {

    .container {
        margin-left: 12vw;
    }

    .logos {
        bottom: 20px;
        right: 20px;
        gap: 15px;
    }   
    
    #cv,
    #cv-video,
    .lkd,
    .mail {
        width: 100px;
    }   

    .page-pag {
        width: 50%;
    }

    .download {
        width: 3vw;
    }

    #close-button,
    #close-button-cv {
    height: 5vw;
    width: 5vw;
}
    
}
