@font-face {
    font-family: Sahel-Light;
    src: url(../fonts/Sahel-Light-FD.ttf);
}
@font-face {
    font-family: Sahel;
    src: url(../fonts/Sahel-FD.ttf);
}
@font-face {
    font-family: Sahel-SemiBold;
    src: url(../fonts/Sahel-SemiBold-FD.ttf);
}
@font-face {
    font-family: Sahel-Bold;
    src: url(../fonts/Sahel-Bold-FD.ttf);
}
@font-face {
    font-family: Sahel-Black;
    src: url(../fonts/Sahel-Black-FD.ttf);
}
.sidebar {
    width: 54px;
    height: 100vh;
    background: linear-gradient(#00072c, #01525b);
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 2;
}
.profile-icon {
    width: 25px;
    margin-left: 14px;
    position: absolute;
    top: 30px;
    opacity: 95%;
}
.home-icon {
    width: 36px;
    margin-left: 9px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 95%;
}
.about-icon {
    width: 25px;
    margin-left: 14px;
    position: absolute;
    bottom: 30px;
    opacity: 95%;
}
@media screen and (max-width: 600px) {
    .sidebar {
        width: 100%;
        height: 50px;
        top: auto;
        bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 10px;
        box-sizing: border-box;
    }
    .profile-icon {
        position: unset;
    }
    .home-icon {
        position: unset;
        transform: none;
        margin-left: 15px;
    }
    .about-icon {
        position: unset;
        margin-right: 14px;
    }
}
