* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.navbar {
    width: 100%;
    position: fixed;
    top: 0px;
    display: flex;
    background-color: aliceblue;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(25px);
    justify-content: space-around;
    padding: 10px;
    z-index: 999;
    color: #000;
}

.navbar .menu a {
    color: #000;
    font-size: 20px;
    padding: 5px;
    margin-bottom: 5px;
    text-decoration: none;

}


.logo {
    font-size: 20px;
    padding: 5px;
}

.logo span {
    color: orangered;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    font-family: sans-serif;
    font-size: 15px;
    transition: all .5s;
    text-decoration: none;
    color: skyblue;
}

.nav-links li {
    padding: 9px;
}

.nav-links a:hover {
    transition: all .5s;
}

.links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.links a {
    font-family: sans-serif;
    font-size: 15px;
    transition: all .5s;
    text-decoration: none;
    color: skyblue;
}

li a:hover {
    color: orangered;
}

.nav-links {
    color: #fff;
    border: none;
    transition: all .5s;
    margin-left: 60px;
}

.section {
    margin-top: 80px;
    display: flex;
    gap: 3rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid aliceblue;
}

.verified {
    margin-bottom: -150px;
    margin-left: -100px;
    border: 5px solid #000;
    height: 30px;
    width: 30px;
    background-color: lightgreen;
    border-radius: 50%;
}

.but {
    gap: 3rem;
}

.but button {
    padding: 8px 30px;
    border-radius: 8px;
    background-color: orangered;
    border: none;
    color: rgb(255, 255, 255);
    letter-spacing: 0.2rem;
    transition: all .5s;
}

.but button:hover {
    transition: all .5s;
    cursor: pointer;
    color: orangered;
    box-shadow: inset 0 3rem #fff;
}


.section img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: black;
}

body {
    display: grid;
    align-items: center;
}

.section p {
    color: orangered;
    font-size: 17px;
    font-weight: 600;
}

.txt {
    width: 700px;
}

.txt a {
    text-decoration: none;
    color: #fff;

}

.section h1,
h2 {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
}

hr {
    height: 200px;
    width: 2px;
    color: aliceblue;
}

.img-container {
    border: 2px solid #fff;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 50px;
    overflow: hidden;
    display: flex;
    background-color: orangered;
    height: 205px;
    width: 205px;
}

body {
    display: grid;
    justify-content: center;
    background-color: #000;
}

.follower {
    margin: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 5rem;
    width: 90%;
    height: 20vh;
    border-radius: 10px;
    background-color: aliceblue;
}

.follower h6 {
    font-size: 15px;
}

.follower .div1 {
    text-align: center;
}

.follower hr {
    height: 20px;
    width: 3px;
    outline: none;
    background: #000;
}

.follower .div1 h6 {
    color: orangered;
}

.sales {
    text-align: center;
    width: 98vw;
    height: 90vh;
    border-radius: 10px;
    background-color: aliceblue;
}

.sales h1 {
    margin: 5px;

}

.sales-images {
    flex-wrap: wrap;
}

.sales button {
    padding: 10px;
    outline: none;
    border-radius: 5px;
    border: none;
    margin: 10px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width:700px) {
body {
    display: grid;
    align-items: ;
}

   hr {
    display: none;
   }

    .section img {
        height: 150px;
        width: 150px;
        border-radius: 50%;
        border: 2px solid #fff;
        background-color: black;
    }

    .verified {
        margin-bottom: -130px;
        margin-left: -100px;
        border: 5px solid #000;
        height: 25px;
        width: 25px;
        background-color: lightgreen;
        border-radius: 50%;
    }

    .img-container {
        border: 2px solid #fff;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        padding: 50px;
        overflow: hidden;
        display: flex;
        background-color: orangered;
        height: 155px;
        width: 155px;
    }
    
    .txt h1, h2 {
        font-size: 10px;
    }

    .txt {
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 350px;
    }

    .but button {
        padding: 6px 30px;
    }



}