@import url('https://fonts.googleapis.com/css2?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');


*,
::before,
::after {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

h1 {
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    display: grid;
    place-items: center;
    height: 100vh;
    background: linear-gradient(to right, rgb(145, 234, 228), rgb(134, 168, 231), rgb(127, 127, 213));
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin-block: 2rem;
    gap: 2rem;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.card {
    display: flex;
    flex-direction: column;
    width: clamp(20rem, 20rem + 2vw, 22rem);
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0.1rem 1rem;
    border-radius: 1em;
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(236, 233, 230));
}

.card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tag {
    align-self: flex-start;
    padding: 0.25em 0.75em;
    border-radius: 1em;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.tag+.tag {
    margin-left: 0.5em;
}

.tag-blue {
    background: linear-gradient(rgb(47, 128, 237), rgb(86, 204, 242));
    color: rgb(250, 250, 250);
}

.tag-brown {
    background: linear-gradient(rgb(255, 209, 148), rgb(209, 145, 60));
    color: rgb(250, 250, 250);
}

.tag-red {
    background: linear-gradient(rgb(239, 71, 58), rgb(203, 45, 62));
    color: rgb(250, 250, 250);
}

.card__body h4 {
    font-size: 1.5rem;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.card__footer {
    display: flex;
    padding: 1rem;
    margin-top: auto;
}

.user {
    display: flex;
    gap: 0.5rem;
    height: 50px;
}

.user__image {
    border-radius: 50%;
}

.user__info>small {
    color: rgb(102, 102, 102);
}

body {
    background: rgb(249, 248, 253);
    font-family: "Lexend Exa", sans-serif;
}

nav {
    display: inline-block;
    border: 2px solid rgb(235, 236, 241);
    border-radius: 30px;
    padding: 20px 221px;
    margin-top: 20px;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: rgb(35, 117, 216);
    font-family: 'Poppins', sans-serif;
}

.menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.logo {
    width: 26% !important;
    height: 90px;
    display: flex;
    flex-wrap: wrap;
    place-content: center flex-start;
}

.menuvar {
    width: 51%;
}

.input-blog {
    width: 23% !important;
    display: flex;
    flex-wrap: wrap;
    place-content: center flex-end;
}

.logo img {
    width: 55px;
    height: auto;
    margin-left: 20px;
}

.input-blog img {
    width: 35px;
    height: 35px;
    margin-right: 20px;
    cursor: pointer;
}

.title-blog {
    width: 100%;
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    place-content: center;
}

input {
    caret-color: red;
}

.container2 {
    position: absolute;
    width: 350px;
    height: 600px;
    border-radius: 8px;
    padding: 27px 40px;
    box-sizing: border-box;
    background: white;
    display: none;
    right: 39px;
    top: 75px;
}

.hide-input {
    display: block;
}

.brand-logo {
    height: 60px;
    width: 60px;
    margin: auto;
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: rgb(203, 206, 209) 0px 1px 10px, white -6px -7px 10px;
}

.brand-title {
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.7rem;
    color: rgb(29, 161, 242);
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.inputs {
    text-align: left;
    margin-top: 30px;
}

label,
input,
button {
    display: block;
    width: 100%;
    padding: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
}

label {
    margin-bottom: 4px;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

input::placeholder {
    color: rgb(206, 187, 187);
}

input {
    background: white;
    padding: 10px 10px 10px 20px;
    height: 50px;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: rgb(203, 206, 209) 0px 0px 2px inset, white 0px 0px 0px inset;
    font-family: 'Poppins', sans-serif;
}

button {
    color: white;
    margin-top: 20px;
    background: rgb(29, 161, 242);
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: rgb(203, 206, 209) 2px 2px 6px, white -6px -6px 6px;
    transition: all 0.5s ease 0s;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

button:hover {
    box-shadow: none;
}

.box {
    width: 40px;
    height: 7px;
    background: red;
    border-radius: 30px;
    margin-top: -85px;

}

.card__body p {
    font-family: 'Poppins', sans-serif;
    line-height: 20px;
    color: #625c5c;
    font-size: 13px;
}

.user__info h5,
small {
    font-family: 'Poppins', sans-serif;
}

/* @media only screen and (min-width: 576px) {
    .menuvar {
        display: none !important;
        background-color: red;
    }
} */

@media only screen and (min-width: 400px) {
    .menuvar {
        display: none !important;
    }
    .input-blog {
        width: 50% !important;
    }

    .logo {
        width: 50% !important;
    }
}
@media only screen and (min-width: 992px) {
    .menuvar {
        display: block !important;
    }
    .input-blog {
        width: 23% !important;
    }

    .logo {
        width: 26% !important;
    }

}