@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rubik+Iso&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* navbar of the prime video website */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to left, #002C7E, #279aec, #002C7E);
    height: 60px;

    & b {
        margin-right: auto;
        margin-left: auto;
        text-transform: capitalize;
        font-size: xx-large;
        font-family: "Cal Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: white;
    }
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;

    & ul {
        display: flex;
        gap: 75px;
    }

    & li {
        list-style-type: none;
        text-transform: capitalize;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-style: normal;
        color: #e0e0e0;
    }
}

ul li:hover {
    color: white;
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

#profile-logo {
    height: 45px !important;
    width: 45px !important;
    border-radius: 50%;
    margin-left: auto;
    display: flex;
    position: relative;
    left: -30px;
    cursor: pointer;
}

#join-btn {
    height: 40px;
    text-transform: capitalize;
    position: relative;
    left: -15px;
    border: none;
    border-radius: 10px;
    font-family: "poppins", sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: #fff;
    background-color: rgb(26, 152, 255);
    padding: 5px;
}

#join-btn:hover {
    box-shadow: 0px 0px 12px rgb(71, 172, 255);
    cursor: pointer;
}

/* let's start making of main content of the website!!! */

.box-of-text {
    margin: auto;
    background-color: #000;
    min-width: 100%;
    max-width: 1300px;
    height: 250px;
    overflow: hidden;
    overflow-x: hidden;
    position: relative;
}

.box-of-text .right {
    color: transparent;
    font-family: "Bebas Neue", sans-serif;
    font-size: 65px;
    white-space: nowrap;
    -webkit-text-stroke: 0.5px white;
    -webkit-background-clip: text;
    position: relative;
    animation: right 50s ease 1ms infinite;
}

.box-of-text #left {
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 65px;
    white-space: nowrap;
    position: relative;
    animation: left 250s ease 1ms infinite;
}

.box-of-text .right {
    color: transparent;
    font-family: "Bebas Neue", sans-serif;
    font-size: 65px;
    white-space: nowrap;
    -webkit-text-stroke: 0.5px white;
    -webkit-background-clip: text;
    position: relative;
    animation: right 50s ease ease 1ms infinite;
}

/* now start the animation of the text */

@keyframes right {
    from {
        transform: translate(0px);
    }

    to {
        transform: translate(-5000px);
    }
}

@keyframes left {
    from {
        transform: translate(-40000px);
    }

    to {
        transform: translate(-0px);
    }
}

@keyframes right {
    from {

        transform: translate(0px);
    }

    to {
        transform: translate(-5000px);
    }
}

/* banner left to here's by my friend */

.banner-selection{
    display: flex;
    width: 100vw;
    height: 50vh;
    background: url(bg-img.jpg);
    background-size: contain;
    box-shadow: 0px 0px 100px #000 inset;
}

.img-box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    height: 50vh;
}

.img-items{
    width: 150px;
    height: 350px;
    border-radius: 10px;
    margin: 5px;
    background: url(img-1.jpg);
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 25px black inset;
    box-shadow: 0px 0px 25px black;
}

.img-items:nth-of-type(2){
    background: url(img-2.jpg);
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 25px black inset;
    box-shadow: 0px 0px 25px black;
}
.img-items:nth-of-type(3){
    background: url(img-3.jpg);
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 25px black inset;
    box-shadow: 0px 0px 25px black;
}
.img-items:nth-of-type(4){
    background: url(img-4.jpg);
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 25px black inset;
    box-shadow: 0px 0px 25px black;
}
.img-items:nth-of-type(5){
    background: url(img-5.jpg);
    background-size: cover;
    background-position: center;
    box-shadow: 0px 0px 25px black inset;
    box-shadow: 0px 0px 25px black;
}

/* hover effect apply on the banner's */

.img-items:hover{
    width: 250px;
    cursor: pointer;
    transition: all 1s;
    background-position: center;
    background-size: cover;
}

/* footer creating to here */

footer{
    min-height: 150px;
    width: 100%;
    background-color: #000;
    overflow-x: hidden;
}

footer>img{
    display: block;
    width: 150px;
    margin: 10px auto;
}

.ft-items{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:25%;

    & .ft-link{
        padding: 5px 10px;
        text-decoration-line: none;
        font-family: "poppin", sans-serif;
        color: #79b8f3;
    }
}

.ft-link:hover{
    color: #90dffe;
}

#ft-para{
    display: flex;
    justify-content: center;
    color: #8197a4;
    font-family: "poppin", sans-serif;
    padding-top: 5px;
}
