@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);

:root{
    --bg: #181616;
    --gradient: linear-gradient(90deg, #00B2FF 24.57%, #0047FF 90%);
    --card-bg: rgba(0, 0, 0, 0.28);
    scroll-behavior: smooth;
}

body{
    background-color: var(--bg);
    color: #fff;
    text-align: center;
    font-family: 'Inter', sans-serif;
}


.offcentered{
    margin-top: 27vh;
    text-align: left;
    margin-left: 10%;
}

h1{
    font-weight: 400;
}

.blue-bold{
    font-weight: 600;
    background-image: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.big-txt{
    font-size: 4.3rem;
    margin-bottom: 0rem;
}
.grey{
    color: #888;
}

.greyunder{
    display: inline;
}

.btn-buy{
    background-color: #0047FF;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 6px;
}

.shop{
    margin-top: 30vh;
}

.shop-shit-txt{
    font-size: 3.6rem;
    font-weight: 500;
}

.card-buy{
    width: 300px;
    background-color: var(--card-bg);
    padding: 10px;
    border-radius: 6px;
    margin: 10px;
}


.shop-flexbox{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media(max-width: 400px){
    .offcentered{
        margin-left: 0;
        text-align: center;
    }
}