@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400&family=Roboto&family=Tektur&display=swap');

:root {
    --main-text-color: #FFFFFF;
    --header-bg-color: #151515;
    --footer-bg-color: #2B2A2A;
    --main-black-color: #000000;
    --project-link-hover: #080806;
    --main-link-color: #3131C4C5;
    --main-link-hover: #070ABE;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'IBM Plex Mono', sans-serif;
}

a {
    text-decoration: none;
}

.wrapper,
.header,
.page,
.footer {
    display: flex;
    flex-direction: column;
}

.header,
.footer {
    align-items: center;
    font-family: 'Tektur';
    font-size: 50px;
    color: var(--main-text-color);
}

.header {
    position: relative;
    max-height: 100vh;
}

.heading-container {
    width: 100%;
    max-width: 100%;
    height: 100vh;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    background: var(--header-bg-color);
    opacity: 0.9;
}

.background-img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg-compressed.jpg);
    background-size: cover;
}

.page {
    width: 100%;
    height: 100%;
}

.projects-container {
    width: 100%;
    height: 100px;
    background: var(--main-black-color);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7091211484593838) 0%, rgba(0, 0, 0, 0.7931547619047619) 17%, rgba(0, 0, 0, 0.381) 43%, rgba(217, 255, 15, 0.8855917366946778) 77%, rgba(222, 255, 26, 0.902) 82%, rgba(0, 0, 0, 0.42) 100%);
}

.projects-heading {
    display: none;
}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    font-size: 25px;
}

.projects-container a {
    color: var(--main-text-color);
}

.projects-container a:hover {
    color: var(--project-link-hover);
}

.projects-list__item span {
    margin: 0 7px;
}

.text-section {
    width: 100%;
    height: 100%;
}

.text-container {
    display: flex;
    width: 100%;
    padding: 3%;
    font-size: 2vw;
    line-height: 2.65vw;
}

.about,
.contacts {
    margin: 20px;
}

.about {
    width: 100%
}

.text-heading {
    font-weight: 400;
}

.h3 {
    margin-top: 20px;
}

.text-container p,
.contacts-list {
    padding-left: 2%;
    font-weight: 200;
}

.contacts-list {
    font-size: 2vw;
}

.links {
    color: var(--main-link-color);
}

.links:hover {
    color: var(--main-link-hover);
}

.footer {
    justify-content: center;
    width: 100%;
    height: 100px;
    background-color: var(--footer-bg-color);
}

@media screen and (max-width: 960px) {}

@media screen and (max-width: 600px) {
    .projects-container {
        background: linear-gradient(90deg, rgba(64, 60, 60, 0.7091211484593838) 0%, rgba(0, 0, 0, 0.938813025210084) 17%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0.8603816526610644) 71%, rgba(50, 58, 6, 0.7931547619047619) 80%, rgba(161, 185, 19, 0.7651435574229692) 91%, rgba(0, 0, 0, 0.6615021008403361) 100%, rgba(222, 255, 26, 0.6587009803921569) 100%);
    }
    .projects-list__item span {
        color: var(--main-text-color);
    }
    .projects-list {
        font-size: 13px;
        line-height: 10px;
    }
    .text-container {
        flex-direction: column;
        font-size: 13px;
        line-height: 14px;
    }
    .contacts-list {
        font-size: 13px;
    }
    .text-heading {
        font-size: 15px;
        margin-bottom: 3px;
    }
    .about, .contacts {
        margin: 0;
        padding: 10px;
    }
    .projects-container a:hover {
        color: rgba(222, 255, 26, 0.902);
    }

}