@font-face {
    font-family: 'Inter';
    src: url('content/fonts/Inter-Bold.otf') format('opentype');
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: url('content/images/bg.jpg') center/cover no-repeat;
    color: #fff;
}

/* Шапка */
.header {
    position: sticky;
    top: 0;
    height: 48px;
    width: 100%;
    background: rgba(8, 8, 8, 0.5);
    backdrop-filter: blur(8px);
    font-size: 20px;

    display: flex;
    align-items: center;
}

.logo {
    margin-left: 128px;
}

/* Центр */
.main {
    height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-img {
    display: block;
}

.desc {
    font-size: 32px;
    text-align: center;
    max-width: 900px;
    color: #fff;
}