body {
    background: #000000;
    display: flex;
    height:100vh;
    width:100vw;
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    color: #ecdab7;

}

a {
    color: #ecdab7;
    transition:0.5s ease;
    text-decoration: none;
}

a:hover {
    color:#ce8564;
    transition:0.5s ease;
}
.sidebar{
    background: black;
    height: 100%;
    width: 20%;
    margin:0;
    text-align:center;
    padding: 50px 20px 0 20px;
    position: fixed;
    border-right: 1px solid orange;
    
}

.link {
    border-radius: 20px;
    padding: 10px;
    width: 70%;
    margin:auto;
    margin-bottom: 20px;
    text-align: right;
    border: 2px solid orange;
}

.link a {
    color:orange;
    margin-right:5px;
    transition: 0.5s ease;
    
}

.link a::before {
    content:'';
    float: left;
    margin-left:5px;
}

.link a:hover {
    font-style:italic;
    color: yellow;
    transition: 0.5s ease;
}

@keyframes rotate {


}

.pfp {
    border-radius: 100%;
    overflow: hidden;
    width: 125px;
    height: 125px;
    margin: auto;
    padding: 5px;
}

.pfp::before {
    content: '';
    display: block;
    z-index: -1;
    position: absolute;
    top: 49px; left: 82px;
    background-image: linear-gradient(orange, yellow);
    border-radius: 100%;
    overflow: hidden;
    width: 135px;
    height: 135px;
    animation: rotate-gradient linear 1.5s infinite;
  }
  
  @keyframes rotate-gradient {
    to { transform: rotate(360deg) }
  }
.pfp img {
    width: 125px;
    border-radius: 100%;
}

.sidebar h1 {
    font-size: 20px;
}
.sidebar h2 {
    font-size: 14px;
    padding: 20px;
}

.site {
    height: 100%;
    width: 80%;
    margin:0;
    padding-top: 30px;
    overflow: scroll;
    margin-left:25%;
}

.header, .post {
    margin: auto;
    width: 60%;
    border: 2px solid orange;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    margin-top:20px;
    background: #000000;
    font-size: 14px;
    
}


.header-img {
    width: 100%;
    margin:auto;
    border-radius: 20px;
    overflow: hidden;
    height: 35vh;
}

.header-img img {
    width:100%;
    margin-top: -50px;
}

.header p {
    margin: 5px 20px 5px 20px;
}
.post h2 {
    text-transform: uppercase;
}

.post li {
    line-height: 200%;
}

.post p {
    line-height: 150%;
}
.post:last-child {
    margin-bottom:50px;
}
.under-construction::after {
    content: ' ⛭ ';
  font-weight: bold;
  margin-left: 5px;
  text-decoration: none;
  animation: glow 3s ease infinite;
}

.not-complete::after {
    content: ' ⚠ ';
  font-weight: bold;
  margin-left: 5px;
  text-decoration: none;
  animation: glow 3s ease infinite;
}

@keyframes glow {
    0% {color: #ecdab7;}
    50% {color: #ce8564;}
    60% {color: #ce8564;}
    100% {color:#ecdab7;}
  }
