body {
    text-align: center;
    font-family: "Avara";
    font-size: 3em;
    color: #b7ff89 ;
    background-color: #3647a0;
}

a {
    text-decoration: none;
    color: #ffffff ;
 
}

@media (max-width: 1000px) {
 body {
    font-size: 1.5em;
 }
 .photo {
    width: 100px;
    height: 50px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}
.photo img {
    width: 50%;
    height: 50%;
    object-fit: cover;
}

}

.photo:hover {
    transform: scale(1.5);

}
.photo img:hover {
    object-fit: contain;
}
.carousel {
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    > * {
      flex: 0 0 100%;
    }
}

.group {
    display: flex;
    gap: 20px;
    padding-right: 20px  ;
    animation: scrolling 20s linear infinite;
    will-change: transform;
}

.carousel:hover .group {
    animation-play-state: paused;
}

.photo {
    width: 500px;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}