.list {
    width: 350px;
    max-width: 95%;
    padding: 0.25rem;
    margin: 1rem;
    border-bottom-left-radius: 15px;
    transition: 150ms;
}

.link {
    text-decoration: none;
    color: white;
    background-color: rgb(44, 44, 44);
    display: block;
    padding: 0.75rem 0;
    width: 75%;
    margin-left: auto;
    text-align: center;
    border-bottom-left-radius: 15px;
    transition: 150ms;
}

.link:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(102, 71, 33);
    width: 90%;
}