/*#0c0d0d #1e2121 #5d6363 #c6c6c6  #4a84a3*/
html {
    font-size: 14px;
    margin: 10px 15%;
    background: #0c0d0d;
    color: #c6c6c6;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
    /*    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;*/
    /*    min-height: 100%;*/
}

@media (max-width : 900px){
    html{
        margin:1px;
    }
}

a {
    color: #c6c6c6;
}

/*a:hover {
    color: #0c0d0d;
}*/

button {
    color: #c6c6c6;
}

button:hover {
    color: #0c0d0d;
}

/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}*/

body {
    margin-bottom: 60px;
}



.search-input {
    padding: 5px;
    margin: 3px 0 0 0;
    width: 100%;
    color: red;
    box-sizing: border-box;
    background: #1e2121;
    border-color: #5d6363;
    border-width: 0 0 1px 0;
    color: #c6c6c6;
    border-radius: 3px;
}

.stuff-item {
    margin: 3px 0px;
    padding: 5px;
    border: solid;
    border-width: 1px;
    border-radius: 3px;
    border-color:transparent;
    background-image: linear-gradient(135deg, #1e2121 33.33%, #0c0d0d 33.33%, #0c0d0d 50%, #1e2121 50%, #1e2121 83.33%, #0c0d0d 83.33%, #0c0d0d 100%);
    background-size: 4.24px 4.24px;
}

    .stuff-item:hover {
        background: #1e2121;
    }

.date-div {
    color: #4a84a3;
    font-size: 12px;
}

.link-icon {
    background-color: transparent;
    border: none;
    margin-right: 3px;
    padding: 3px 7px;
}

.link-icon:hover {
    background-color: lightgrey;
    color: #0c0d0d;
    cursor: pointer;
}

.link-icon:active {
    background-color: gray;
}

.share-btn {
    background: #1e2121;
    color: #c6c6c6;
    padding:5px 10px;
}

.logo {
    color: #4a84a3;
    text-decoration: none;
    font-size:30px;
    font-weight:bold;
}
    .logo:hover {
        text-decoration: none;
        color: #4a84a3;
    }

header nav{
    display:flex;
    place-content:center;
}

.modal .post-area {
    width: 100%;
    box-sizing: border-box;
    
    border-radius: 3px;
    background: #1e2121;
    border-color: #5d6363;
    border-width: 0 0 1px 0;
    color: #c6c6c6;
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: none;
    justify-content:center;
}

.modal.active {
    display:block;
}

.modal-background {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
}

.modal-content {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background: white;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 80%;
    border-radius: 3px;
    box-sizing: border-box;
    background-image: linear-gradient(135deg, #1e2121 33.33%, #0c0d0d 33.33%, #0c0d0d 50%, #1e2121 50%, #1e2121 83.33%, #0c0d0d 83.33%, #0c0d0d 100%);
    background-size: 4.24px 4.24px;
}

.modal .close-modal{
    position:absolute;
    right:5px;
    top:3px;
    font-size: 18px;
    
}