:root {
    --primary-color: #c20429;
    --primary-hover: #e3123b;
    --header-bg: #222222;
    --body-bg: #d6d6d6;
    --text-color: #222222;
    --white: #ffffff;
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--body-bg);
    color: var(--text-color);
    font-family: 'Merriweather', serif;
    font-size: 17px;
    line-height: 1.6;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

p {
    font-weight: 300;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(194, 4, 41, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(194, 4, 41, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(194, 4, 41, 0);
    }
}
