body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.icon{
    color: white;
    font-size: 40px;
    transition: .3s;
}
.icon:hover{
    color: #d6d6d6;
}

.navbar-brand{
    font-size: 30px;
    transition: .3s;
}
.navbar-brand:hover{
    color: #d6d6d6;
}

.edit-button{
    color: #ebeff1;
    transition: .3s;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 40px;
    box-shadow: none;
    text-shadow: none;
    padding: .3rem .8rem;
    background: transparent;
    outline: none;
}

.edit-button:hover{
    color: black;
    background: white;
}

.border.rounded.box{
    background: #303030;
    transition: .15s;
}
.border.rounded.box:hover{
    transform: scale(1.13, 1.13);
}
.border.rounded.box h3{
    color: white;
}
.border.rounded.box p{
    color: #d6d6d6;
}
.border.rounded.box a{
    text-decoration: none;
    color: #2977ff;
    transition: .3s;
}
.border.rounded.box a:hover{
    color: #4d7fd6;
}