@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*, ::after, ::before, html{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    font-style: normal;
    outline: none;
    font-optical-sizing: auto;
}

:root{
    --background-color: #e8e8e8;
    --header-background: #1e575b;
    --header-color: #fff;
    --nav-element-list-color: #000;
    --nav-element-list-background: #fff;
    --publish_documents_background: #1e575b;
    --publish_documents_element_list-background: #e8e8e8;
    --publish_documents_element_link-color: #000;
    --footer-color: #00000075;
    --hover-color: #144347;
}

body{
    background-color: var(--background-color);
}

#app{
    padding: 0 20px;
}

#header{
    padding: 10px;
    background-color: var(--header-background);
    display: flex;
    align-items: center;
    color: var(--header-color);
    justify-content: space-between;
    border-radius: 0 0 20px 20px;
}

#header_right__nav_list{
    display: flex;
    gap: 10px;
}

.element_list{
    padding: 10px 15px;
    background-color: var(--nav-element-list-background);
    font-size: 16px;
    border-radius: 10px;
}

.element_list_link{
    color: var(--nav-element-list-color);
}

#contacts{
    background-color: #1e575b;
    text-align: center;
    margin-top: 10px;
    color: #fff;
    padding: 10px;
    border-radius: 20px;
}

.contact_link{
    color: #fff;
    text-decoration: underline;
}

#main{
    margin: 10px 0;
    background-color: #1e575b;
    padding: 10px;
    border-radius: 20px;
}

#publish_documents{
    padding: 10px;
    background-color: var(--publish_documents_background);
    text-align: center;
    border-radius: 25px;
}

#publish_documents_elements{
    display: flex;
    gap: 10px;
}

.publish_documents_element_list{
    background-color: var(--publish_documents_element_list-background);
    padding: 5px;
    border-radius: 15px;
    max-width: 200px;
}

.publish_documents_element_image{
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.publish_documents_element_description{
    margin: 10px 0;
}

.publish_documents_element_link{
    color: var(--publish_documents_element_link-color);
    text-decoration: underline;
}

#footer{
    padding: 20px 0;
    text-align: center;
    color: var(--footer-color);
}