* {
    box-sizing: border-box;
}
.content {
    padding: 20px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .content {
        width: 90%;
    }
}

@media (min-width: 1201px) {
    .content {
        padding: 50px 180px;
    }
}

@media (min-width: 430px) {
    .bookmarks {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 670px) {
    .bookmarks {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (min-width: 900px) {
    .bookmarks {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width: 1300px) {
    .bookmarks {
        grid-template-columns: repeat(5,1fr);
    }
}

body {
    background-color: #2e3440;
    color: #d8dee9;
}


.bookmarks {
    display: grid;
}

.header {
    font-weight: 700;
    font-size: 1.5rem;
    font-family: sans-serif;
}

h3 {
    font-size: 1.3rem;
    font-family: sans-serif;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    font-size: 1.2rem;
    font-family: sans-serif;
    line-height: 2;
    display: flex;
}

a:link, a:visited {
    color: #81a1c1;
}



/* .bookmarks {        */
/*     margin: 0 auto; */
/* }                   */

/* .category {        */
/*     display: flex; */
/* }                  */