body{
    background-color: #222222;
}
form label{
    color: white;
    font-size: 24px;
}
#Filter{
    display: flex;
    align-items: center;
    justify-content: center;

}
#Filter a{
    color: white;
    background-color: #111111;
    border-radius: 16px;
    text-decoration: none;
    padding: 10px;
}
#Filter a:hover{
    background-color: #333333;
}
#AdminPanel{
    list-style: none;
}
#AdminPanel li{
    font-size: 24px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}
#AdminPanel li a{
    color: white;
    text-decoration: none;
    background-color: transparent;
}
#AdminPanel li a:hover{
    color: #B20710;
    transition: 0.2s ease;
}
#ProfileListing{
    display: flex;
    font-family: "Outfit", sans-serif;
    padding: 10px;
    width: 200px;
    height: 50px;
    background-color: transparent;
    justify-content: space-between;
    border-radius: 10px;
    transition: 0.2s ease;
}
#ProfileListing p{
    text-decoration: none;
}
#CreatePost{
    background-color: grey;
    color: white;
    font-size: 32px;
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 10px;
    border-color: transparent;
    position: fixed;
    right: 10px;
    bottom: 0;
}
#PFP{
    width: 200px;
    height: 200px;
    border-radius: 100px;
}
#MenuButtons{
    display: none;
    background-color: grey;
    border-radius: 4px;
    margin-top: -15px;
    margin-left: 20px;
    padding: 10px;
    line-height: 30px;
}
#MenuButtons a{
    text-decoration: transparent;
    color: white;
    font-size: 18px;
    transition: 0.4s ease;
}
#MenuButtons a:hover{
    color: black;
    text-decoration: underline;
    transition: 0.4s ease;
    font-weight: 400;
}
#Menu:hover #MenuButtons{
    display: block;
}
#Menu{
    display: flex;
    flex-wrap: wrap;
    background-color: grey;
    height: 60px;
    width: 60px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
}
#Menu button{
    background-color: transparent;
    border-color: transparent;
    font-size: 45px;
    font-weight: 800;
    color: white;

}
#ProfilePicture img{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid black;
    background-color: #333333;
}
#Nav nav ul{
    list-style: none;
    display: flex;
    background-color: darkslategrey;
    padding: 0;
    margin: 0;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
}
#Nav nav ul li{
    display: block;
    margin: 0;
}
#Nav nav ul li a{
    color: black;
    font-size: 32px;
    font-weight: 800;
    text-decoration: transparent;
    padding: 12px 16px;
    transition: 0.8s ease;
}
#Nav nav ul li a:hover{
    color: white;
    text-decoration: underline;
    text-underline-offset: 5px;
    background-color: grey;
    transition: 0.8s ease;
}
#Header{
    padding: 0;
    margin: 0;
    top: 0;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#Logo{
    padding: 0;
    margin: 0;
    display: flex;
    line-height: 0;
    font-size: 72px;
    -webkit-text-stroke: #B20710 2px;
    text-shadow: 4px 0px 4px black;
}
#Logo a{
    padding: 0;
    margin: 0;
    color: #DB0000;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.5s ease;
}
#Logo a:hover{
    background-color: rgba(0,0,0,0.5);
    transition: 0.5s ease;
}


.center{
    display: flex;
    justify-content: center;
}
.vertCenter{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.usersList{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.usersList a{
    text-decoration: none;
    color: white;
}
.usersList a:hover #ProfileListing{
    background-color: #333333;
    transition: 0.2s ease;
    
}
.profileHeader{
    margin-top: 32px;
    display: flex;
    width: 500px;
    justify-content: space-evenly;
    align-items: center;
}
.headerImage{
    background-color: transparent;
    border-radius: 100px;
    border: 1px solid black;
    background-color: #333333;
}
.headerImage img{
    width: 100px;
}
.headerNonImage{
    display: block;
    background-size: contain;
    padding: 0;
}
.headerText{
    font-size: 64px;
    color: white;
    font-weight: 600;
}
.headerUserInfo{
    display: flex;
    align-items: center;
    margin-top: -65px;
}
.headerUserInfo img{
    width: 25px;
    height: 25px;
    border-radius: 13px;
}
.form{
    display: flex;
    margin-top: 100px;
    justify-content: center;
}
.ubuntu-bold {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.outfit {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.post{
    background-color: #333333;
    border-radius: 25px;
    display: block;
    margin-top: 10px;
    width: 400px;
    height: fit-content;
    color: white;
}
.post hr{
    border: 2px dotted #222222;
}
.postImage{
    width: 400px;
}
.postProfile{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    border: 1px solid black;
    border: 1px solid black;
    background-color: #444444;
}
.postHeader{
    display: flex;
    padding: 5px;
}
.postHeader a{
    padding-left: 5px;
    color: white;
    text-decoration: transparent;
    transition: 0.4s ease;
}
.postHeader a:hover{
    color: #DB0000;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: 0.4s ease;
}
.post button{
    color: white;
    background-color: transparent;
    border-color: transparent;
    border-radius: 10px;
    transition: 0.2s ease;
}
.post button:hover{
    color: red;
    background-color: rgba(0,0,0,0.5);
    transition: 0.2s ease;
}
.posts{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.comment{
    display: flex;
    color: white;
    background-color: #444444;
    border-radius: 5px;
}
.comment a{
    color: white;
    text-decoration: none;
    transition: 0.2s ease;
}
.comment a:hover{
    color: #B20710;
    transition: 0.2s ease;
}
.commentButton{
    font-size: 32px;
    color: white;
    float: right;
    margin-right: 20px;
    background-color: transparent;
    padding: 10px;
    border-radius: 10px;
    transition: 0.2s ease;
}
.commentButton:hover{
    background-color: rgba(0,0,0,0.5);
    transition: 0.2s ease;
}
.commentMaker{
    background-color: #111111;
}
.commentMaker textarea{
    max-width: 400px;
    max-height: 100px;
}
.adminRow{
    display: flex;
}
.adminRowButton{
    padding-left: 2px;
    padding-right: 2px;
    color: white;
    background-color: transparent;
    border-radius: 3px;
    transition: 0.4s ease;
    text-decoration: none;
    font-size: 24px;
}
.adminRowButton:hover{
    color: #DB0000;
    background-color: rgba(0,0,0,0.5);
    transition: 0.4s ease;
}
.editable{
    color: white;
    font-family: "Outfit", sans-serif;
    font-size: 24px;
}