/* {
    padding: 0px;
    margin: 0px;
}*/

body {
    background-color: rgb(235, 235, 235);
    background: radial-gradient(circle,rgba(255, 166, 209, 1) 0%, rgba(235, 235, 235, 1) 100%);
    background-origin: bottom right;
    font-family: monospace;
    line-height: 1.75;
}
nav {
    width: 200px;
    height: 200px;
    background: url("/writings/images/pinkheart.jpeg");  
    background-size: 200px 200px;
    border-style: dashed;
    border-width: 1px;
    border-color: black;
    color: black;
    position: fixed;
    left: 0px;
    bottom: 0px;
    text-align: center;
    line-height: 1.25;
    padding: 20px;
    box-sizing: border-box;

}

aside {
    width: 200px;
    height: calc(100vh - 200px);
    background: linear-gradient(180deg,rgba(57, 19, 117, 1) 0%, rgba(158, 53, 184, 1) 100%);
    color: black;
    overflow: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    list-style: none;
}

article {
    width: calc(50vw - 100px);
    height: calc(100vh);
    position: fixed;
    box-sizing: border-box;
    left: calc(150px + 25vw);
    top: 0vh;
    padding: 100px 0px 100px 0px;
    color: rgb(0, 0, 0);
    overflow: scroll;
    text-shadow:  0px 0px 2px rgb(235, 235, 235), 0px 0px 2px rgb(235, 235, 235), 0px 0px 5px rgb(235, 235, 235); 
}

#amit {
  position: fixed;
  border-style: dashed;
  border-width: 1px;
  border-color: black;
  right: 10%;
  bottom: 20%;
  width: 30%;
  height: 60%;
}

#calcutta {
  position: fixed;
  border-style: dashed;
  border-width: 1px;
  border-color: black;
  left: 5%;
  top: 15%;
  width: calc(200px + 5%);
  height: calc(200px);
}

.post {
    border-style: dashed;
    border-width: 1px;
    border-color: black;
    color: black;
    padding: 25px 50px 25px 50px;
    margin-bottom: 25px;
}

.post > h1 {
    margin-top: 0em;
    margin-bottom: 0em;
}

.medium {
    background: rgb(222, 140, 255);
}

.genre {
    background: rgb(239, 255, 94);
}

.warning {
    background: rgb(255, 128, 166);
}

.date {
    background: rgb(255, 217, 134);
}

a {
    color: black;
}

a:hover {
    color: black;
}

a:active {
    color: black;
}

a:visited {
    color: black;
}

::selection {
    color: rgb(235, 235, 235);
    background: black;
}

nav::-webkit-scrollbar {
    display: none;
}