:root {

    /* purple/green colours
    --dark-color: #230531;
    --light-color: #00ff7f;
    */
    --dark-color: #626d86;
    --light-color: #f1f1f1;
}

/* Font Styles Start */

@font-face {
    font-family: "Geist";
    src: url("assets/Geist/GeistVariableVF.woff2") format("woff2");
}

* {

    margin: 0;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;

}

::selection {
    color: var(--dark-color);
    /* Text color */
    background-color: var(--light-color)
        /* Background color */
}



/* Font Styles End */

/* Tag Styles Start */

html {

    background-color: var(--dark-color);
    color: var(--light-color);
    font-family: "Geist", sans-serif;

}

h1 {

    font-size: 4em;

}

h2 {

    font-size: 2em;
    font-weight: 400;

}

main {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5%;

}

section {

    border-radius: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--light-color);
    padding: 3rem;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 1rem;
    flex: 1;
    margin: 0rem 0rem 1rem 0rem;

}

button {

    padding: 1rem;
    border-radius: 4px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-style: solid;
    border-color: var(--light-color);
    border-width: 1px;
    font-weight: 700;
    transition: all ease 0.33s;
    cursor: pointer;
    min-width: 300px;
    flex: 1;

}

button:hover {

    background-color: white;
    color: var(--dark-color);
    border-color: white;
    transform: scale(1.02);

}

svg,
g {

    stroke: var(--dark-color);
    fill: none;

}

/* Tag Styles End */

/* Class Styles Start */

.btn-group {

    display: flex;
    gap: 1rem;
    flex-wrap: wrap;

}

.btn-alt {

    color: var(--light-color);
    background-color: transparent;

}

.grid-section {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 0rem 0rem 1rem 0rem;

}

.grid-section_item {

    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.section_inverted {

    background-color: var(--light-color);

}

/* Class Styles End */