body {
	background: linear-gradient(-45deg, rgb(0, 0, 0), rgb(40, 40, 40), rgb(91, 90, 90), rgb(144, 144, 144));
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
    font-family: font;
    color: aliceblue;
    font-size: 10px;
}
.topnav a {
    border-radius: 10px;
      float: left;
      text-align: center;
      padding: 15px 16px;
      text-decoration: none;
      font-size: 17px;
      position: relative;
      left: 15px;
      transition: background-color 300ms ease-out 100ms
    }
.topnav {
      font-family: coolFont;
      color: aliceblue;
      animation: fade ease 1s;
      overflow: hidden;
      position: relative;
      top: 10px;
      left: 10px;
      
    }
.topnav a:hover {
        animation: ease-in-out 2s;
        background-color: #ddd;
        color: black;
        
      }
      
.topnav a.active {
        background-color: #2304aa;
        color: white;
      }
.pfp{
    float:left;
        width: 50px;
        border-radius: 50%;
        position: relative;
      
        
      }
.pfp_big{
    width: 200px;
    border-radius: 50%;
    position: relative;
          
            
    }
.content {
        /* From https://css.glass */
        background: rgba(255, 255, 255, 0.13);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(6.6px);
        -webkit-backdrop-filter: blur(6.6px);
        border: 1px solid rgba(255, 255, 255, 0.36);
    }
    p{
        font-family: coolfont;
        color: aliceblue;
        font-size: 15px;
    }
    a{
        font-family: font;
        color: aliceblue;
        font-size: 10px;
    }
    h1{
        font-size: 25px;
    }
.post {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
    border: 1px solid rgba(255, 255, 255, 0.36);
}
.post:hover {
    animation: ease-in-out 2s;
    background-color: #ddd;
    color: black;
  }



@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@font-face {
    font-family: font;
    src: url(../font/font.otf);
  }
@font-face {
    font-family: coolfont;
    src: url(../font/font.tff);
  }
