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

:root{
    --bg: #111;
    --blue: rgb(0, 102, 255);
    --grey: #888;
    --card-bg: rgba(0, 0, 0, 0.355);
}

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


.content-main{
    margin-top: 20vh;
}

span{
    color: var(--blue);
}

.txt-header{
    font-weight: bold;
    font-size: 4.5rem;
    margin-bottom: -0rem;
}

.grey{
    color: var(--grey);
    display: inline;
    font-weight: 530;
}

.blue{
    background-color: var(--blue);
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 500;
}

.shop{
    margin-top: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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


.nav{
    display: flex;
    align-items: center;
}

.nav > h1{
    margin-left: 30px;
}

.link-shit{
    flex-grow: 1;
}

.link{
    color: #888;
    text-decoration: none;
}

h1{
    font-weight: 600 !important;
}


@media (max-width: 300px){
    .txt-header{
        font-size: 3.5rem;
    }
}

@media (max-width: 270px){
    .nav{
        display: none;
    }
    .content-main{
        margin-top: 24vh;
    }
}

.bottom-creds{
    position: absolute;
    bottom: 0;    
    text-align: center;
    width: 100%;
    color: var(--grey);
}