* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #212121;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,fira sans,droid sans,helvetica neue,sans-serif;
    text-align: center;
}

.wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    text-align: left;
}

header {
    background: linear-gradient(to bottom right, #4479a1, #1a3d59);
}

header nav a {
    display: block;
    color: #fff;
    padding: 0 10px;
    line-height: 30px;
}

header nav a:hover {
    color: #4479a1;
    background-color: #fff;
}

header nav li.selected a {
    color: #fff;
    border-bottom: 3px solid #fff;
}

header nav li.selected a:hover {
    color: #4479a1;
}

header .wrapper {
    padding: 25px 0 20px 0;
    text-align: center;
    color: #F1F9FF;
}

header a {
    text-decoration: none;
}

header .site-name {
    font-size: 2.5em;
    color: #fff;
    font-weight: bold;
}

header nav li {
    display: inline-block;
    margin: 0 0px;
    line-height: 1.5em;
}

header nav li a {
    font-weight: bold;
    padding: 0 30px;
    line-height: 2.2em !important;
}

nav li {
    display: inline-block;
    margin: 0 7px;
    line-height: 1.5em;
}

nav li a.selected {
    text-decoration: underline;
}

h1 {
    margin-bottom: 20px;
    font-size: 2em;
}

h2 {
    margin: 20px 0;
}

p {
    margin-bottom: 10px;
}

a {
    color: inherit;
}

.description {
    margin-bottom: 40px;
}

.item-list > li {
    display: block;
    padding: 20px;
    border-radius: 20px;
    background-color: #F1F9FF;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px -8px gray;
}

.item-list > li:last-child {
    margin-bottom: 0;
}

.item-list h1 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.item-list h4 {
    margin-bottom: 10px;
}

.item-list p {
    margin-bottom: 0;
}

.item-list *, p {
    line-height: 1.4em;
}

.item-list ul {
    list-style-type: square;
    margin-left: 10px;
}

.item-list p a {
    text-decoration: none;
    color: #06568F;
    font-weight: bold;
}

.item-list p a:hover {
    text-decoration: underline;
}

.item-list img {
    border-radius: 20px;
    object-fit: scale-down;
    max-height: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 10px 10px 10px;
}

/*TAGS*/

.tag-list {
    margin-bottom: 15px;
}

.tag-list li, .tag {
    display: inline-block;
    margin: 5px;
}

.tag-list a,
.tag a {
    text-decoration: none;
    color: #06568F;
    font-size: 12px;
}

.tag-list a:hover,
.tag a:hover {
    text-decoration: underline;
}

div.app-links {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

a.app-appstore {
    width: 120px;
    height: 40px;
}

a.app-website {
    height: 40px;

    display: inline-block;
    background-color: #ffffff;
    padding: 7px 7px 7px 7px;
    border-radius: 7px;
    background-repeat: no-repeat;
    background-size: auto 70%;
    background-position: 5px center;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    border: 1px solid black;
}

a.app-appstore img {
    border-radius: 0px;
    padding: 0px 0px 0px 0px;
}

.item-page .tag-list {
    display: inline-block;
}

.content {
    margin-bottom: 40px;
}

.browse-all {
    display: block;
    margin-bottom: 30px;
}

.all-tags li {
    font-size: 1.4em;
    margin-right: 10px;
    padding: 6px 10px;
}

li.item-publish-date {
    background-color: transparent;
    color: #555;
    /*add something here*/
    font-size: 12px;
}

li.item-publish-date::before {
    content: "Published on ";
}


footer {
    color: #8a8a8a;
}

hr {
    padding: 10px;
}

img.me {
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-width: 300px;
    float: right;
}

.col-container {
  display: flex;
  width: 100%;
}
.col {
  flex: 1;
  padding: 16px;
}

.column {
  float: left;
}

.left {
  width: 50%;
}

.right {
  width: 50%;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #222;
    }

    body,
    header .site-name {
        color: #F1F9FF;
    }

    .item-list > li {
        background-color: #282C2F;
        box-shadow: 0 4px 8px -8px black;
    }

    header {
        background-color: #000;
    }
    
    a.app-website {
        background-color: #000;
    }
    
    .item-list p a {
        color: #93d5ff;
    }
    
    .tag-list a,
    .tag a {
        color: #93d5ff;
    }
}

@media(max-width: 600px) {
    .wrapper {
        padding: 40px 20px;
    }
    
    header nav li a {
        padding: 0 8px;
    }
    
    header nav {
        margin: 8px;
    }
}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
  
  .col-container {
      display: inline-block;
  }
  
  .item-list img {
      display: block;
  }
}
