.card {
    box-shadow: 0 4px 6px 0 rgba(22, 22, 26, 0.18);
    border-radius: 0;
    border: 0;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.05);
}

#go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 4px 6px 0 rgba(22, 22, 26, 0.18);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}