body {
    margin: 0;
    padding: 0;
    background-image: url(../img/image-cache.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    

}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: aliceblue;
}

h2 {
    margin: 0;
    color: aliceblue;
}

.herobtn {
    display: flex;
    justify-content: space-between;


}

.compte,
.carriere {
    display: flex;
    color: cyan;
    background-color: rgba(39, 84, 198, 0.501);
    padding: 1rem 1.9rem;
    letter-spacing: 1rem;
    text-decoration: none;
    border-radius: 1rem;
    justify-content: center;
}

.compte:hover,
.carriere:hover {
    background: rgba(0, 255, 255, 0.545);
    box-shadow:
        0 0 20px #239BFF,
        0 0 80px #239BFF,
        0 0 160px #239BFF,
        0 0 320px #239BFF;
    color: #255784;
}

/*.compte:active {
    position: relative;
    top: 1px;
}*/
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.svg {
    width: 70px;
    height: 70px;
    color: #239BFF;
}

.svg2 {
    color: #239BFF;
    width: 70px;
    height: 70px;
    animation: bounceDown 1s infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.gallery {
    width: 100%;
}

.gallery_container {
    align-items: center;
    display: flex;
    height: 400px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
}

.gallery_item {

    height: 200px;
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease-in-out;
    width: 330px;
    z-index: 0;
    border-radius: 15px;
    background-size: contain;
}

.gallery_item:hover {
    cursor: pointer;
    opacity: +1;
    background: cyan;
    box-shadow:
        0 0 20px #239BFF,
        0 0 80px #239BFF,
        0 0 160px #239BFF,
        0 0 320px #239BFF;
    color: #255784;
}

.hard:hover {
    cursor: pointer;
    opacity: +1;
    background: rgb(255, 42, 0);
    box-shadow:
        0 0 20px #ff0000,
        0 0 80px #ff0000,
        0 0 160px #ff0000,
        0 0 320px #ff0000;
    color: #f04d29;
}

.gallery_item_1 {
    left: 15%;
    opacity: 4;
    transform: translateX(-50%);
}

.gallery_item_2,
.gallery_item_4 {
    height: 250px;
    opacity: 0.8;
    width: 380px;
    z-index: 1;
}

.gallery_item_2 {
    left: 30%;
    transform: translateX(-50%);
}

.gallery_item_3 {
    box-shadow: -2px 5px 33px 6px rgba(0, 0, 0, 35);
    height: 300px;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    width: 550px;
    z-index: 2;
}

.gallery_item_4 {
    left: 70%;
    transform: translateX(-50%);
}

.gallery_item_5 {
    left: 85%;
    opacity: .4;
    transform: translateX(-50%);
}

.gallery_controls {
    display: flex;
    justify-content: center;
}

.gallery_controls button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 30px;
    margin: 0 50px;
    padding: 0 12px;
    text-transform: capitalize;
}

.gallery_nav {
    bottom: -15px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
}

.gallery_nav li {
    background: #ccc;
    border-radius: 50%;
    height: 10px;
    margin: 0 16px;
    width: 10px;
}

.gallery_nav li.gallery_item_selected {
    background: #555;
}