/*************************/
/***** HTML Elements *****/
/*************************/

*,
*:before,
*:after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--text-font);
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
    font-size: var(--text-font-size);
    line-height: var(--text-line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    color: var(--primary-color);
    text-transform: uppercase;
}

h1 {
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
}

h2 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
    margin-bottom: 32px;
}

a {
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .2px;
}

a[type="button"] {
    border: 2px solid var(--primary-color);
    transition: 0.26s opacity linear;
    padding: 20px 32px;
    width: max-content;
    font-size: 16px;
    display: inline-block;

    &:hover {
        opacity: .7;
    }
}

a[type="link"] {
    &:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}

p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/*******************/
/***** Classes *****/
/*******************/

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.responsive-columns {
    display: flex;

    > div {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .responsive-columns {
        flex-direction: column;
        > div {
            width: 100%;
        }
    }

    footer {
        .footer-content {
            flex-direction: column !important;
            > div {
                width: 100% !important;
                 ul {
                     text-align: left !important;
                 }
            }
        }
    }
}