*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
    /* font-family: roboto; */
}
a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 30px;
    padding: 10px 50px;
    width: 100%;
    height: 100px;
    margin: auto;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.388);
    /* margin-bottom: 2px; */
    /* border: 1px solid black; */
    text-decoration: none;
}


.hover-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0;
    background-color: rgb(255, 255, 255);
    color: white;
    transform: translate(-50%, -50%);
    transition: 0.4s ease-in-out;
    z-index: 1;
}

a:hover .hover-box {
    height: 100%;
}
.moving:hover{
    opacity: 1;
}
.moving{
    /* transform: translateX(-50%); */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 200vw;
    height: 100%;
    color: black;
    position: absolute;
    /* gap:80px; */
    /* white-space: nowrap; */
    /* display: inline-block; */
    /* background-color: rgba(255, 182, 193, 0.72); */
    animation: scroll-left 10s linear infinite;
    opacity: 0;
    transition: 0.5s ease-in-out;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.page1{
    background-color: black;
    height: 10vh;
    width: 100%;
}

.move{
    animation: scroll-left 10s linear infinite;
    width: 200vw;
    justify-content: space-between;
}