* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {}

.sidenav {}

footer {
    margin-top: auto;
}

a {
    /* text-decoration: none; */
}

.scale-up {
    transition: 0.2s;
}

.scale-up:hover {
    cursor: pointer;
    transform: scale(1.05);
}