body {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-display: swap;
}

#hero {
    min-height: 100vh;
    background-image: url(/assets/img/bg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .3);
}

.content {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, .7);
}

h1 {
    font-weight: 300;
}

p {
    font-size: 18px;
    font-weight: 300;
    max-width: 760px;
    line-height: 1.6;
    margin: 0 auto 16px;
}

.logo {
    width: 100%;
    max-width: 460px;
}
.contacts-box{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, .7);
    border-radius: 16px;
    padding: 20px 0;
    max-width: 420px;
    margin: 0 auto;
}
.contacts-box a{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: .3s all ease-in-out;
}
.contacts-box a:hover{
    opacity: .7;
}
.contacts-box img{
    width: 40px;
    height: 40px;
}
@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    src: local(""), url(../fonts/roboto/roboto-v29-latin-ext_latin-300.woff2) format("woff2"), url(../fonts/roboto/roboto-v29-latin-ext_latin-300.woff) format("woff")
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    src: local(""), url(../fonts/roboto/roboto-v29-latin-ext_latin-regular.woff2) format("woff2"), url(../fonts/roboto/roboto-v29-latin-ext_latin-regular.woff) format("woff")
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 700;
    src: local(""), url(../fonts/roboto/roboto-v29-latin-ext_latin-700.woff2) format("woff2"), url(../fonts/roboto/roboto-v29-latin-ext_latin-700.woff) format("woff")
}

@font-face {
    font-family: Marcellus;
    font-style: normal;
    font-weight: 400;
    src: local(""), url(../fonts/marcellus/marcellus-v8-latin-ext-regular.woff2) format("woff2"), url(../fonts/marcellus/marcellus-v8-latin-ext-regular.woff) format("woff")
}

@media screen and (max-width:575px) {
    .content {
        padding: 40px 10px;
    }
    p{
        font-size: 16px;
        line-height: 1.3;
    }
    h1{
        font-size: 28px;
    }
}