html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.sidebar {
    position: sticky;
    height: 85vh;
}

.scale-1 {
    transition: 0.3s;
}

.scale-1:hover {
    transform: scale(1.1);
}

.scale-0_5 {
    transition: 0.3s;
}

.scale-0_5:hover {
    transform: scale(1.05);
}