* {
    margin: 0;
    padding: 0;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    font-weight: normal;
}

.header {
    width: 28vw;
    height: 100vh;
}

.header1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    padding-left: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo {
    background-size: contain;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    margin-left: 5px;
    padding: 0px;
    align-self: flex-start;
}

.links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.links ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* margin-bottom: 5px; */

}

.links ul li {
    display: flex;
    align-items: center;
    justify-content: center;

}

.links ul li a {
    margin: 7px 0px;
    text-decoration: none;
    list-style: none;
    display: flex;
    align-items: center;
    width: 90%;
    background-color: rgb(0, 0, 0);

}

.links ul li a img {
    overflow: hidden;
}

.links ul li a h3 {
    padding: 7px 15px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    margin-left: 10px;
}
.links ul li a h3:hover{
    background-color:rgb(22, 24, 28);
    border-radius: 50px;
}
.post_button {
    height: 50px;
    width: 80%;
    background-color:rgb(29, 155, 240);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.switch_profile {
    height: 50px;
    width: 100%;
    margin-bottom: 10px;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;

}

.circle {
    height: 40px;
    width: 40px;
    background-color: rgb(90, 90, 90);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile_info {
    height: 50px;
    width: 100px;
    background-color: azure;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin-right: 15px;
    margin-left: 5px;
}

.name {
    height: 50%;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    padding-left: 10px;
}

.small_font {
    font-weight: 10;
    font-size: small;
}

.user_name {
    padding-left: 10px;
    height: 50%;
    color: white;
    width: 100%;
    background-color: rgb(0, 0, 0);
}

.more {
    width: 40px;
    height: 40px;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
}

.more img {
    filter: invert(1);
}
.border{
    border: .1px solid white;
}