/* Custom Variables */
/*=========================*/
:root {
    --heading-font: "Oxygen", sans-serif;
    --paragraph-font: "Source Sans Pro", sans-serif;
    --color1: "";

}
/* Generic Page Styles */
/*=========================*/
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--heading-font) !important;
    background-color: "";
    color: "";
}

main {
    flex-grow: 1;
}

/* Page Fonts */
/*=========================*/
p {
    font-family: var(--paragraph-font) !important;
    color: "";
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font) !important;
    font-weight: 600;
    color: "";
}
/* Links */
/*=========================*/
a {
    text-decoration: none;
    color: "";
    transition: 0.3s;
}

a:hover {
    color: "";
}

/* Buttons */
/*=========================*/
.btn-primary {
    
}

.btn-primary:hover {

}

/* Form Help Text */
/*=========================*/
.help-text {
    font-size: 13px;
    font-style: italic;
}

/* Social Icons */
/*=========================*/

/* Card Hover Effect */
/*=========================*/
.card {
  border: 1px solid #dee2e6; /* Default border */
  transition: border-color 0.3s ease-in-out;
}

.card:hover {
  border-color: #007bff; /* Primary blue border on hover */
}
