@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 - 190px);

    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: 120px;

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

    margin: auto;

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

footer div
{
    display: flex;
    margin: 0 auto 0 auto;
}

footer div:nth-child(2)
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer a
{
    display: flex;
    align-items: center;
    text-decoration: none;

    margin: 5px;
    padding: 5px;

    transition: all 0.5s ease; 
}

footer a:hover
{
    background-color: aliceblue;
    border-radius: 10px;
}

footer a:hover .string
{
    color: #111;
}

footer a:hover .rotateIMG
{
    transform-origin: center;
    transform: rotate(360deg);
}


footer a p
{
    font-size: 20px;
    font-weight: bold;
    color: #FFF;

    margin-left: 5px;
}

footer img
{
    width: 50px;
    height: auto;

    display: block;
    transition: all 0.5s ease; 
}


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