.noteType {
    background-color: #1f1f1f;
    padding:10px;
    border-radius: 10px;
    transition: 0.4s;
    cursor: pointer;
    margin-bottom: 10px;
}
.noteType:hover {
    background-color: #0f0f0f;
}

.noteType img {
    vertical-align: middle;
}

.noteType span {
    margin-left: 10px;
    font-weight: 900;
    color:white;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding-bottom:10px;
}

.footer-link {
    text-decoration: none;
    color:white;
    transition: 0.4s;
}

.footer-link:hover {
    color:rgb(124, 124, 124);
}