@import '/UI/Style.scss';

CloseButton {
    justify-content: center;
    align-items: center;
    color: $white;
    background-color: $red;
    width: 48px;
    font-size: 34px;
    height: 48px;

    &:hover {
        filter: brightness(60%);
        cursor: pointer;
        sound-in: 'hover';
    }

    &:active {
        transform: scale(0.95);
        sound-in: 'light_click';
    }
}