/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Michroma&display=swap');

/* Set root color variables */
:root {
    --primary-color: #000000;
    --secondary-color: #FAFAF9;
    --alt-primary-color: #191A1A;
    --alt-secondary-color: #FACF9F;
    --accent-color: #F56D24;
}

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

html {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

main {
    display: inline-block;
    padding: 1rem;
}

h1, h2 {
    font-family: 'Michroma', Arial, sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3, h4, h5, h6, p {
    font-family: 'Michroma', Arial, sans-serif;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    font-family: 'Epilogue', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.2;
}

main {
    width: 100%;
}

.cta-btn {
    display: inline-block;
    color: var(--secondary-color);
    background-color: var(--alt-primary-color);
    outline: 2px solid var(--accent-color);
    font-family: 'Michroma', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 1000px;
    padding: 0.5rem 1rem;
    margin: 1rem;
}

.cta-btn:hover {
    color: var(--primary-color);
    background: linear-gradient(180deg, #fd1f0f, #f88a0d);
    outline: 2px solid var(--secondary-color);
}

.social-icon {
    fill: var(--secondary-color);
    height: 2.5rem;
}

.social-icon:hover {
    fill: var(--accent-color);
}

/* Header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
}

.social-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-container a {
    margin: 0.25rem;
}

/* Footer Section */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    padding: 0.5rem 1rem;
}

#cbca-badge {
    width: 100px;
}

#intersect-badge {
    width: 85px;
}

#cexplorer-badge {
    width: 95px;
}

.footer-text {
    padding: 0.5rem;
    align-items: center;
    justify-items: center;
}

.footer-text p {
    font-size: 0.75rem;;
}

/* Media Queries */
@media(max-width: 430px) {
    html {
        font-size: 12px;
    }
}