@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&family=Source+Code+Pro:wght@200&family=Ubuntu:wght@300&display=swap');
html,
body {
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    background-color: #F8F9FA;
}
a {
    color: inherit;
    text-decoration: none;
}
* {
    box-sizing: border-box;
}
.title-small {
    font-weight: lighter;
    color: #495057;
}
.title {
    color: #212529;
    opacity: 0.8;
    font-size: 2rem;
    font-family: 'PT Sans Narrow', sans-serif;
    user-select: none;
}
.top-bar {
    background-color: #F8F9FA;
    padding: 0.5rem;
    border-bottom: 3px solid #E9ECEF;
    width: 100%;
    max-height: 100px;
    overflow: hidden;
    position: fixed;
}
.search {
    height: 100%;
    background-color: transparent;
    font-size: 1.9rem;
    border: none;
    font-family: 'Source Code Pro', sans-serif;
    outline: transparent;
    caret-color: #495057;
}
.module-list {
    padding-top: 75px;
}
.listed-module {
    margin: 10px;
    padding: 10px;
    background-color: #DEE2E6;
    border-radius: 5px;
    max-width: 200px;
    border-bottom: 3px solid #495057;
    font-family: 'Nunito', sans-serif;
    user-select: none;
}
.span-right {
    float: right;
}
.tag {
    background-color: #495057;
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    margin-right: 10px;
}
.description {
    margin-left: 5px;
}
.module-title {
    margin-left: 5px;
    color: #212529;
    opacity: 0.8;
    font-size: 1.5rem;
    font-family: 'PT Sans Narrow', sans-serif;
    user-select: none;
}
.contribute {
    position: fixed;
    right: 10px;
    bottom: 10px;
}
.contribute * {
    margin: 5px;
}
.contribute:hover {
    animation-duration: 0.5s;
    animation-name: shake;
}

@keyframes shake {
    30% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(-2deg);
    }
}