
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root
{
    --bg-color-dark: #000;
    --bg-color-light: #e0e0e0;
    --color-light: #fff;
}
*
{
    box-sizing: border-box;
}
html {
    height: 100%;
}
body
{
    font-family: 'Roboto Condensed', sans-serif;
    display: flex;
    flex-direction: column;    
    justify-content: space-between;
    margin: 0;
    height: 100%;
}
main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;   
    overflow: hidden;
}
main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000000b8;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}
.background-layer {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url(/local/templates/snug/img/header.jpg) center center no-repeat;
    background-size: cover;
    z-index: 0;
    transition: transform 0.2s ease-out;
    will-change: transform;
}
.inner_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    flex: 2;
}
.dark {
    background-color: var(--bg-color-dark);
}
section {
    position: relative;
    z-index: 2;
}
section.top {
    color: var(--color-light);  
    align-content: center;
}

.title_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

section.bottom {
    color: var(--color-light);
    width: 100%;
    align-content: center;
}

.contact_wrapper {
    padding: 10px 0 40px;
    text-align: center;
        font-size: 22px;
}

.contact_wrapper a {
    color: var(--color-light);
}

section.footer {
    z-index: 3;
    opacity: 0.8;
    width: 100%;
}
.footer_bottom {
    padding: 10px 0;
}

.copyright {
    color: #939393;
}


