﻿#adminContainer{
    display:flex;
    width:100%;
    height:500px;
    justify-content:center;
    align-content:center;
    gap:3rem;
}
#sideMenu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 10%;
    color: #f1f2f6;
    background-color: #2f3542;
}
#sideMenu span{
    display: flex;
    padding:1rem;
    display:block;
    background-color:#ff6348;
    font-size:12px;
}
#sideMenu ul {
  display:flex;
  flex-direction:column;
  gap:0.2rem;
  align-content:center;
  text-align:center;
}
#sideMenu ul li {
  list-style:none;
  display:block;
  padding: 1.5rem;
  align-content:center;
  text-align:center;
}
#sideMenu ul li:hover {
cursor:pointer;
background-color:#747d8c;
}
#dashGroup{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:80%;
    border:1px solid red;
}
#blogDash {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 100%;
    border: 1px solid red;
}
#projectDash {
    display: none;
    flex-direction: column;
    width: 90%;
    height:100%;
    border: 1px solid red;
}
