:root {
    --bg-color: #212031;
    --text-color: #FBFBFF;
    
    --purple: #AB8AFF;
    --purple-dark: #4E2583;
    --red: #FF181C;
    --red-dark: #7C0B0D;
}

body {
    font-family: 'Prosto One', 'sans-serif';
    margin: 0;
    background: var(--bg-color);
    animation: bgGradientAnimation 4s infinite alternate;
    color: var(--text-color);
}

button {
    font-family: 'Prosto One', 'sans-serif';
    font-weight: 400;
    color: #FBFBFF;
    background-color: var(--purple);
}

a {
    font-family: 'Prosto One', 'sans-serif';
    font-weight: 400;
    color: #FBFBFF;
    background-color: var(--purple);
}

.share-favourite-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="checkbox"] {
    accent-color: #9275dc;
    cursor: pointer;
}

img {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}