* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 10px;
    --primary-text: black;
    --bg-color: white;
    --border: #E6E6E6;
    --banner: #F9F9F9;
    --accent-color: #03A543;
    --category-color: #F5F5F5;
    --button-circle: #D2D2D2;
    --footer-bg: #1C1C1C;
    background-color: var(--bg-color);
}
html.scheme-black-green {
    --bg-color: #000000;
    --primary-text: #00FF00;
    --banner: #000000;
    --border: #333333;
    --category-color: #000000;
    --footer-bg: #000000;
}

html.scheme-beige-brown {
    --bg-color: #F5F5DC;
    --primary-text: #4A3728;
    --banner: #F5F5DC;
    --border: #4A3728;
    --category-color: #F5F5DC;
    --footer-bg: #F5F5DC;
}

html.scheme-blue-darkblue {
    --bg-color: #ADD8E6;
    --primary-text: #00008B;
    --banner: #ADD8E6;
    --border: #00008B;
    --category-color: #ADD8E6;
    --footer-bg: #ADD8E6;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    color: var(--primary-text);
    background-color: var(--bg-color);
}

button {
    border: none;
    background: none;
}

body * {
    font-family: 'Montserrat', sans-serif;
}

header,
main,
footer {
    background-color: var(--bg-color);
}


hr {
    background-color: var(--border);
    height: 1.5px;
    border: none;
}


a {
    text-decoration: none;
    color: var(--primary-text);
    font-size: 1.8rem;
}

p {
    line-height: 140%;
}

h2 {
    font-size: 4.8rem;
    line-height: 145%;
}


footer {
    margin-top: 8.6rem;
    background-color: var(--footer-bg);
    padding-top: 10rem;
    color: white;
}

footer .main {
    display: flex;
    justify-content: space-between;
    padding-left: 10rem;
}

.s_icons {
    margin-top: 4rem;
    display: flex;
    gap: 3rem;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

footer li {
    list-style: none;
}

footer h4 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

footer a {
    color: white;
    font-weight: 300;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

footer .phone p,
.email p {
    font-size: 1.8rem;
    color: #888888;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

h3 {
    font-size: 3.2rem;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.email h3 {
    text-transform: uppercase;
}

.email {
    margin-right: 28rem;
}

footer hr {
    width: 100vw;
    height: 1px;
    opacity: 50%;
}

.copyright {
    margin-top: 2rem;
}

.copyright p {
    padding-left: 10rem;
    padding-top: 2.1rem;
    padding-bottom: 2rem;
    color: white;
    opacity: 50%;
    font-size: 1.8rem;
    font-weight: 300;
}

@media screen and (max-width: 1280px) {
    
    footer .main {
        flex-direction: column;
        align-items: center;
        padding-left: 2rem;
        padding-right: 2rem;
        text-align: center;
    }

    .email {
        margin-right: 0;
        margin-top: 2rem;
    }

    .copyright p {
        padding-left: 2rem;
    }
    footer h4
    {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    footer .phone p
    {
        margin-top: 1rem;
        margin-right: 0rem;
        margin-bottom: 1rem;
    }
    .copyright
    {
        text-align: center;
    }
}

@media screen and (max-width: 610px) {
    .category p
    {
        font-size: 1.6rem;
    }
    .copyright p
    {
        font-size: 1.6rem;
    }
}
