:root {
    --font-size: 16px;
    --font-weight: 400;
    --font-family: 'Azeret Mono';

    --text-color: #F1F1F1;
    --style-color: #9146FF;
    --hover-color: #e0dede;
    --grey-color: #848484;
    --bg-color: #111111;
    --foter-color: #000000;
    --link-color: #39A0FF;
}

@font-face {
    font-family: "Azeret Mono";
    src: url("../fonts/AzeretMono-SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Azeret Mono";
    src: url("../fonts/AzeretMono-Medium.ttf");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Azeret Mono";
    src: url("../fonts/AzeretMono-Regular.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Azeret Mono";
    src: url("../fonts/AzeretMono-Light.ttf");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-size: var(--font-size);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    color: var(--text-color);
    background-color: var(--bg-color);

    padding: 0;
    margin: 0;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


* {
    box-sizing: border-box;
}

button, a {
    font-size: var(--font-size);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    color: var(--text-color);
    background: 0;
    outline: 0;
    border: 0;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 40px;
}

.styled-color {
    color: var(--style-color);
}

.site-body {
    height: 100vh;
    /* padding: 60px 0; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro {
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
}

.intro-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

}

.intro-logo {
    width: 100px;
}

.intro-title {
    font-size: 35px;
    font-weight: 500;

}

.intro-title b {
    font-weight: 600;
}

.intro-subtitle {
    font-weight: 300;
    margin-top: 5px;
}

@media (max-width: 575px) {
    .intro-logo {
        width: 70px;
    }

    .intro-title {
        font-size: 25px;
    }
}

@media (max-width: 440px) {
    .intro-logo {
        width: 60px;
    }

    .intro-title {
        font-size: 23px;
    }

    .intro-name {
        gap: 20px;
    }
}

@media (max-width: 400px) {
    .intro-name {
        flex-direction: column;
        text-align: center;
    }
}

.links-space {
    /* margin-top: 40px; */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 0;
}

hr {
    /* height: 100%; */
}

.links-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.link {
    display: flex;
}

.link a:hover {
    text-decoration: underline;
}
