html {
    background-color: black;
}
body::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.01),
        rgba(0, 0, 0, 0.01) 2px,
        transparent 2px,
        transparent 4px
    );
    z-index: 9999;
}

div, h1, h2, h3, h4, p{
    color: #252525;
}

h1 a{
    text-decoration: none;
    color:#252525;
    transition: all 0.3s ease;
}
h1 a:hover{
    filter:blur(4px);
}

button.nd-normal{
    border: 1px solid rgba(25, 25, 25, 0.2);
    background: rgba(250,250,250,0.5);
    color: rgb(25, 25, 25);
    font-weight: 500;
}
button.nd-black{
    border: 1px solid rgba(255, 255, 255, 0.2); 
    background: rgb(35, 35, 35);
    color: rgb(240, 240, 240);
    font-weight: 500;
}

.p1{
    margin-top:-1rem;
    margin-left:20vw;
    margin-right:20vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: fit-content;
}
.p1 h1{
    font-size: 3rem;
    font-weight: 600;
}

.main-icon{
    width:6.9rem;
    margin-left:-1rem;
    margin-bottom:.5rem;
}

@media (max-width: 480px){
    .p1{
        margin-left:5vw;
        margin-right:5vw;
    }
}

.p1 .tag-container{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    row-gap: 12px;
}

.p2 h1{
    margin-top:.5rem;
    margin-left:1.5rem;
    color: #f0f0f0;
}
.p2 h1 span{
    color: #e6ff55;
}

@keyframes slide-r{
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes slide{
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.images-group{
    white-space: nowrap;
    position: relative;
    height:25vh;
    font-size: 0;
    width: 5000px;
    transition: all 0.3s ease;
}

.images-group:hover .images-group-slide,
.images-group:hover .images-group-slide-r{
    animation-play-state: paused;
}
.images-group:hover,
.images-group:hover{
    z-index: 10;
}


.images-group-slide{
    display: inline-block;
    height: 100%; 
    animation: 20s slide infinite linear;
}

.images-group-slide-r{
    display: inline-block;
    height: 100%; 
    animation: 20s slide-r infinite linear;
}
@media (max-width: 480px){
    .images-group-slide {
        animation: 30s slide infinite linear;
    }

    .images-group-slide-r{
        animation: 30s slide-r infinite linear;
    }
}
.images-group-slide img,
.images-group-slide-r img{
    width: auto;
    height: 100%;
    transition: all 0.3s ease;
}
.images-group-slide img:hover,
.images-group-slide-r img:hover{
    transform: scale(1.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 20;
    position: relative;
}

.mark{
    font-size: 3.5rem; 
    opacity: .3; 
    margin-right: -1.2rem; 
    color: #6495ed !important; 
    position: relative; 
    z-index: -1;
    font-weight:bold;
}
.mark.normal{
    color: rgba(25,25,25,0.3) !important;
}

.tag{
    display: inline-block;
    border: .2rem solid rgba(125, 125, 125, 0.1);
    border-radius: 10px;
    width:auto;
    padding:10px;
    padding-top:5px;
    padding-bottom:5px;
}
.tag h4{
    margin:0;
}