/* Подключение шрифтов Montserrat */
@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

:root{
    --font3: "Montserrat", sans-serif;
    --font4: "PP Neue Machina", sans-serif;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body{
    margin: 0;
    background-color: #000;
}
main{
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.content{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    animation: fadeIn 1s ease-out;
}
.background__shadow{
    position: absolute;
    z-index: -1;
    animation: fadeIn 1.5s ease-out 0.2s both;
}
.background__shadow svg{
    border-radius: 100%;
    filter: blur(100px);
}
.content .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    animation: fadeIn 1.2s ease-out;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.background:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    display: block;
    background: rgba(0, 0, 0, 40%);
}
.content::before{
    content: '';
    border-radius: 100%;
    fill: rgba(0, 0, 0, 0.6);
    filter: blur(500px);
}
.content .title {
    font-family: var(--font4);
    font-weight: 400;
    font-size: 72px;
    line-height: 90%;
    text-align: center;
    color: #FFF;
    animation: fadeInUp 1s ease-out 0.3s both;
}
.contacts{
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 1s ease-out 0.6s both;
}
.contacts .contacts__item {
    font-family: var(--font3);
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: #FFF;
}
.contacts .contacts__item a{
    text-decoration: underline;
    color: #FFF;
    transition: .3s ease all;
}
.contacts .contacts__item a:hover{
    opacity: .5;
}
.socials {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    margin-top: -8px;
    animation: fadeInUp 1s ease-out 0.9s both;
}
.socials__item {
    border: 1px solid #FFF;
    border-radius: 50%;
    padding: 14px;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease all;
}
.socials__item:hover{
    opacity: .5;
}

/* Анимация для логотипа */
.logo {
    animation: scaleIn 1s ease-out 0.4s both;
}

/* Анимация для частиц */
.particles {
    animation: fadeIn 1s ease-out 0.5s both;
}

@media(max-width:1400px){
    .content .title {
        font-size: 40px;
    }
    .contacts .contacts__item {
        font-size: 14px;
    }
    .socials__item {
        padding: 10px;
        height: 20px;
        width: 20px;
    }
}
@media(max-width:991px){
    .content .title {
        font-size: 32px;
    }
}