* {
    font-family: sans-serif;
}

.logo {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-left: 13px;
    font-size: 20px;
}

body {
    padding: 0%;
    margin: 0%;
    background-color: rgb(212, 211, 211);
}

nav {
    display: flex;
    justify-content: space-between;
    background-color: rgb(1, 1, 20);
    color: white;
    width: 100vw;
    position: fixed;
    top: 0%
}

nav ul {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

ul li {
    list-style: none;
}

ul li a {
    text-decoration: none;
    margin-inline: 20px;
    color: white;
    font-size: 20px;
}

ul li a:hover,
ul li a.active {
    color: rgb(4, 219, 219);
    font-weight: 600;
}

.icon {
    display: none;
    align-items: center;
    font-size: 30px;
    margin-right: 12px;
}

.main {
    display: flex;
    justify-content: center;
    margin-top: 155px;

}

.mainText h1 {
    font-size: 55px;
    color: rgb(4, 192, 192);
    align-items: center;
}

.mainText h2 {
    font-size: 33px;
}

.mainText button {
    width: 120px;
    height: 34px;
    background-color: rgb(3, 171, 171);
    color: white;
    font-size: 18px;
    border-radius: 10px;
    border: none;

}

.mainText button:hover {
    border: 2px solid rgb(3, 163, 163);
    background-color: transparent;
    color: black;
    cursor: pointer;
}

.main p {
    flex-wrap: wrap;
}

.cards {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cards .crd {
    margin-inline: 22px;
    text-align: center;
}

.crd i {
    color: rgb(248, 118, 3);
    position: relative;
    top: -11px;
}

.crd h3 {
    margin-top: 3px;
}

.crd img {
    width: 300px;
    height: 340px;
}

.head {
    padding: 65px;
    text-align: center;
}

.head span {
    color: orangered
}

.reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.reviews .rCard {
    width: 260px;
    height: 240px;
    background-color: #fff;
    text-align: center;
    padding: 16px;
    margin-inline: 20px;
    border-radius: 5px;
}

.rCard:hover {
    background-color: gray;
    transition: 1s ease;
}

.rCard img {
    width: 42%;
    border-radius: 50%;
}

.rCard button {
    width: 90px;
    height: 30px;
    background-color: rgb(3, 165, 165);
    color: white;
    border: none;
    font-size: 18px;
    margin-top: 20px;
}

.blog {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.blog .blogCard {
    width: 300px;
    /* height:340px; */
    text-align: center;
    background-color: #fff;
    margin-inline: 22px;
    padding: 16px;
    border-radius: 5px;

}

.blogCard img {
    width: 100%;
    border-radius: 5px;
}

.blogCard a {
    padding: 4px 20px;
    background-color: rgb(3, 151, 151);
    color: white;
    font-size: 18px;
    text-decoration: none;
    /* border-radius: 5px; */
}

.blogCard:hover {
    transition: 1s ease;
    cursor: pointer;
    background-color: gray;
}

.connect {
    text-align: center;
}

.connect input {
    width: 340px;
    padding: 11px;
    font-size: 18px;
    background-color: transparent;
    margin-top: 11px;
    border: 2px solid black;
    border-radius: 10px;
}

.connect button {
    width: 130px;
    height: 36px;
    background-color: rgb(1, 143, 143);
    color: #fff;
    font-size: 20px;
    border: none;
    margin-top: 22px;
    border-radius: 10px;
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: space-around;
    background-color: black;
    padding: 44px;
    margin-top: 33px;
    color: #fff;
    flex-wrap: wrap;
}

/* item page */

.itemPage {
    /* display: flex; */
    display: none;
    margin-top: 33px;
    margin-left: 25px;
    background-color: gray;
    flex-wrap: wrap;
}

.itemPage img {
    width: 400px;
}

.itemPage .itemText {
    margin-inline: 24px;
}

.itemText h2 {
    color: rgb(3, 78, 3);
}

.itemPage input {
    width: 30px;
    padding: 4px;
    font-size: 20px;
}

.itemText a {
    padding: 4px 20px;
    background-color: orangered;
    color: #ffff;
    font-size: 18px;
    text-decoration: none;
}

.buyPage {
    width: 360px;
    background-color: #fff;
    padding: 0, 22px;
    position: absolute;
    left: 50%;
    right: 50%;
    top: -18%;
    /* background-color: rgba(128, 128, 128, 0.764); */
    transform: translate(-50%, 40%);
    display: none;
    flex-wrap: wrap;
    
}

.buyText input {
    width: 95%;
    padding: 7px;
    border: 2px solid black;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 18px;

}

.buyText {
    padding: 42px;
}

.buyPage .cross {
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: rgb(242, 242, 242);
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.buyText button {
    width: 120px;
    height: 34px;
    background-color: rgb(22, 178, 178);
    color: #fff;
    font-size: 20px;
    border: none;
    margin-top: 22px;
    border-radius: 10px;
}

.buyText select {
    height: 30px;
    width: 30%px;
    border-radius: 20px;
    font-size: 18px;
}


@media only screen and (max-width:600px) {
    nav ul {
        display: none;
    }

    .icon {
        display: flex;
        cursor: pointer;
    }

    .showData {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 55px;
        background-color: rgb(120, 120, 120);
        width: 100%;
        height: 240px;
        gap: 20px;
        padding: 0%;
        text-align: center;
    }

    .mainText h1 {
        width: 40px;
        align-items: center;
    }

    mainText h2 {
        width: 24px;
    }

    .crd img {
        width: 71%;
    }

    .connect input {
        width: 60%;
    }
    /* .buyPage{
        width: auto;
    } */
     .iteamPage{
        width: 100%;
        padding: 10%;
     }
}

@media only screen and (max-width:1000px) {
    .main {
        display: block;
        text-align: center;
    }

    .main img {
        margin-top: 20px;
    }
}

@media only screen and (max-width:400px) {
    .main img {
        width: 95%;
    }
}