* {
    padding: 0;
    margin: 0;
    font-size: 26px;
    list-style: none;
    text-decoration: none;
    transition: all 0.5s;
}

body {
    width: 100vw;
    height: 100vh;
}

.header {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 10%;
    background-color: rgb(137, 16, 203);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    text-align: center;
    line-height: 50px;
}

.menu {
    position: relative;
    width: 20%;
    height: 50%;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    max-width: 170px;
}

.menu button .icon-radio-off {
    display: none;
}

.menu button.active {
    background: none;
    box-shadow: none;
}

.menu button.active .iconfont {
    display: none;
}

.menu button.active .icon-radio-off {
    display: block;
}

.menu button {
    position: relative;
    width: 80%;
    max-width: 150px;
    height: 50px;
    border-radius: 25px;
    border-style: none;
    box-shadow: -2px 2px 0px 0px rgba(0, 0, 0, 0.75);
    margin: auto;
    display: flex;
}

.menu button:hover {
    transition: all 0.2s;
    transform: translateY(-10px);
}

.menu span {
    margin: auto;
}

.menu button i.iconfont {
    position: relative;
    font-size: 25px;
    margin: auto;
}

.content {
    position: absolute;
    width: 60%;
    height: 80%;
    top: 100px;
    left: 15%;
    flex-direction: column;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: nones;

}

.content-blog {
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: rgba(181, 181, 181, 0.56);
    margin-bottom: 20px;
    border-radius: 15px;
}

.information {
    display: flex;
}

.avatar {
    position: relative;
    width: 100px;
    height: 100px;
    top: 40px;
    left: 40px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
}

.P-Info {
    display: flex;
    position: relative;
    top: 120px;
    left: 60px;
    gap: 15px;
    font-size: 10px;
}

.P-Info h1 {
    position: absolute;
    top: -40px;
}

.P-Info p {
    font-size: initial;
}