@font-face 
{
    font-family: "Rubik";
    src: url('../fonts/Rubik/Rubik-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
@font-face 
{
    font-family: "Audiowide";
    src: url('../fonts/Audiowide/Audiowide-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
html
{
    scroll-behavior: smooth;
}
footer
{
    display: flex;
    justify-content: space-around;
    height: 200px;
    /*border-top: 1px solid grey;*/
    padding: 0 30px;
    background-color: black;
}
.footer_logo
{
    display: flex;
    align-items: center;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    color: white;
}
.logo_image_link
{
    text-decoration: none;
    outline: none;
    padding-right: 20px;
    border-right: 1px solid white;
}
#logo_image_link_span_0
{
    color: white;
}
.logo_year
{
    font-family: "Rubik";
    padding-left: 20px;
    font-size: 20px;
}
.footer_menu
{
    display: flex;
    width: 25%;
    align-items: center; 
}
.footer_contacts
{
    display: block;
    align-content: center;
    font-size: 20px;
    color: white;
}
.footer_phone,
.footer_email
{
    margin: 10px auto;
    font-weight: 500;
}

@media screen and (max-width: 900px) 
{

    footer
    {
        display: block;
    }
    .footer_logo
    {
        justify-content: center;
        margin-bottom: 20px;
    }
    
}

