@import "header-style.css";
@import "footer-style.css";
@import "nav_bar-style.css";
@import "variables.css";

@media screen and (min-width: 320px) {
    :root {
        font-size: 6px;
    }
}

@media screen and (min-width: 375px) or (min-width: 426px) {
    :root {
        font-size: 7px;
    }
}

@media screen and (min-width: 768px) {
    :root {
        font-size: 8px;
    }
}

@media screen and (min-width: 1024px) {
    :root {
        font-size: 12px;
    }
}

@media screen and (min-width: 1440px) {
    :root {
        font-size: 12px;
    }
}

@media screen and (min-width: 2560px) {
    :root {
        font-size: 13px;
    }
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: var(--defautl-font-color);
}

body {
    background-color: var(--first-background-color);
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    margin: 0 8vw;
    padding: 2rem 0 2rem 0;
}


a {
    color: var(--defautl-font-color);
    text-decoration: none;
    text-align: center;
}

.container_white {
    background-color: var(--second-background-color);
    border: 1px solid var(--default-border-color);
    box-shadow: 0 0 10px #ccc;
}

.container {
    border-radius: 10px;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.container__name {
    font-size: 2rem;
}

.name {
    width: 100%;
    font-size: 1.5rem;
	text-align: center;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.text_left {
    text-align: left;
}

.font_normal {
	padding: 4rem;
	font-size:1.4rem;
}

.font_normal p{
	text-indent: 2rem;
	
}

.article__img {
	
	margin-right: 2rem;
	margin-bottom: 2rem;
	float: left;

}

.font_normal_for_scale {
    font-size:1.4rem
}


