.closebutton {
     margin-right: 12px;
    border: 2px solid #000;
    background: #000;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.15s ease;
}

.closebutton::after {
    content: "×";
    margin-right: 12px;
    border: 2px solid #000;
    background: #000;
    width: 26px;
    height: 18px;
    border-radius: 2px;
    cursor: pointer;
}

.closebutton:hover {
    transform: scale(1.15);
}

.closebutton:hover::after {
    opacity: 1;
}