@import url();

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    color: white;
}


.collection{
    height: 100vh;
    background-color: #1d1b1b;
    display: flex;
    justify-content: center;
    align-items: center;

}

.collection .content{
    height: 28rem;
    width: 25rem;
    background-color: black;
    border: .2rem solid rgba(255, 255, 255, .1);
    border-radius: .7rem;
    border-bottom: .4rem solid #04fffb;
    border-top: .4rem solid #04fffb;
    overflow: hidden;
   /* padding: .2rem;*/

}

.content img{
    width: 100%;
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem;

   
}

.text-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text-content h3{
    font-size: 1.7rem;
    font-weight: 500;
}


.text-content p{
    max-width: 22rem;
    font-size: .8rem;
    font-weight: 400;
    text-align: center;

}
.btn{
    background-color: #04fffb;
    padding: .2rem;
    border: 2px solid #04fffb;
    outline: none;
    font-size: .8rem;
    border-radius: .5rem;
    margin: 1rem 0;
    cursor: pointer;
}


.btn  {
    display: inline-block;
    padding: .2rem;
    background: #04fffb;
    border-radius: 25px;
    margin: 1rem 0;
    width: 100px;
    height: 30px;

    color: black;
    font-size: .8rem;
    transition: 0.4s ease-in-out;
    text-align: center;
    text-decoration: none;
}
:root {
    --bg-color: #111;
    --second-bg-color: #151515;
    --text-color: white;
    --main-color: #04fffb;
}

.btn:hover {
    background: transparent;
    cursor: pointer;
    border: 0.1rem solid var(--main-color);
    color: var(--main-color);
    transform: scale(1.1);
}



.header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background:#111;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}


.logo img {
    width: 40px;
    height: auto;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.logo img:hover {
    transform: scale(1.1);
}

.navbar a {
    font-size: 1.8rem;
    color: white;
    margin-left: 4rem;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
    text-decoration: none;

}

.navbar a:hover, .navbar a.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

