@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* 
{
    box-sizing: border-box;
    color: black;
    font-family: 'Roboto', sans-serif;
    /* font-family: 'Oswald', sans-serif; */
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, ul, li, img
{             
    margin: 0;
   	padding: 0;
    border: 0;
    vertical-align: baseline;

    scroll-behavior: smooth;
}

main
{
    width: 100%;
    min-height: calc(100vh - 140px);

    margin: auto;
}



body
{
	position: relative;
	background-image: url("../IMG/fon.gif"); 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	width: 100vw;
	height: 100vh;

    object-fit: cover;
    
    overflow: hidden;
}


/* Шапка сайта */
header
{
    width: 100%;
    height: 70px;
}

header div
{
    width: fit-content;
    height: 100%;

    border: 5px solid #111;

    margin: auto;

    display: flex;
    align-items: center;
}

header div p
{
    width: fit-content;
    height: fit-content;
    color: #111;

    margin: auto;
    padding: 10px;

    font-size: 35px;
    font-weight: bold;
}
/* Конец шапки сайта */


/* Подвал сайта */
footer
{
    width: fit-content;
    height: 70px;

    /* background-color: #111; */
    border-radius: 10px;

    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p
{
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
}
/* Конец подвала сайта */