@import url('https://fonts.cdnfonts.com/css/poppins');

:root {
    --blue: #7096ef;
    --light-blue: #b4d4f6;
    --light-purple: #dbc7f7;
    --grey: #cfccd4;
}

* {
    padding: 0;
    margin: 0;

    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}


h1 {
    font-weight: 450 !important;
}

a {
    text-decoration: none !important;
}

footer a:hover {
    text-decoration: underline !important;
}

footer {
    margin-top: auto;
    width: 100%;

    background-color: aliceblue;
}

.navbar {
    padding: 0 15px;
    background-color: aliceblue;
    text-transform: uppercase;
}

.navbar-brand {
    width: max-content !important;
}

.navbar-brand  {
    width: 30px;
    border-radius: 100%;
}

#content {
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--bs-light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--grey)
}

@media screen and (max-width: 670px) {
    .navbar button:focus {
        box-shadow: none;
    }

    #content {
        flex-wrap: wrap;
        min-height: 100vh;
    }

    .card {
        width: 350px !important;
        height: 500px !important;
        margin: 0 auto;
    }
}