@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
* {
    font-family: "Merriweather", serif;
}
/* define two css variables */
:root {
    --primary-color: #61578F;
    --secondary-color: #796EB2;
}

.primary-bg {
    background-color: var(--primary-color);
    color: white;
}

.secondary-bg {
    background-color: var(--secondary-color);
    color: white;
}

.gradient-bg {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;


}
.gradient-bg:hover {
    filter: brightness(1.2);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.primary-text {
    color: var(--primary-color);
}

.secondary-text {
    color: var(--secondary-color);
}

.menu li a {
    color: var(--secondary-color);
}
.menu li a:hover {
    color: var(--primary-color);
}


h1 {
    font-size: 2rem;
    font-weight: 900;
    color: black;
}

h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 6px;
    margin-top: 10px;
}


ul.list-disc {
    margin-left: 2rem;
}
