.top{
    background-color: #920000;
    padding: 8px;
    color: white;
}
body{
     height: 100vh;
     /* background-color: #f1f1f1; */
}
*{
    padding: 0;
    margin: 0;
}
#bar{
    display: none;
}
.navigation{
    width: 20%;
    background-color: #ffffff;
    padding: 12px;
}
.logo{
    width:70px;
}
.logo img{
    width: 100%;
}
.profile{
    width: 40px;
    height: 40px;
    border: solid 1px white;
}
.nav-link{
    display: flex;
    align-items: center;
    gap: 8px;
   width: 100%;
 height: 12x;
 margin-bottom: 12px;
}
.nav-link i{
    color: #1c1c1c;
}
.nav-link a{
    color: #1c1c1c;
    text-decoration: none;
}
.nav-link:hover{
    background-color: #f1f1f1;
    transition: 0.3s;
}
.content-div{
    background-color: aliceblue;
    
}

.profile img{
     width:20px;
    height: 20px;
    object-fit: cover; 
    width: 100%;
}
.collapse a:hover{
    background-color: #f1f1f1;
    transition: 0.3s;
}
.canvas{
    height: 100vh;
    width: 80%;
    height: 100%;
    background-color: #f1f1f1;
    padding: 16px;
}

.canvas-content{
    background-color: white;

    height: 100%;
}
.left{
    width: 50%;
    height: 100%;
}
.right{
    height: 100%;
    width: 50%;
}
.user-input{
    height: 100%;
}
#signup{
    background-image: url(../assets/background.jpg);
    background-size: cover;
    
}
@media screen and (max-width: 650px) {
    .navigation{
        display: none;
        width: 0%;
    }
    #bar{
        display: block;
    }
    .canvas{
        width: 100%;
        padding: 0;
    }
    .logo{
    width: 90%;
    }
    .logo img{
        width: 100%;
    }
}