* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    height: 100vh;
    overflow: hidden;
    color: #fff;
}

.video-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
}

.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    font-family: 'Vazirmatn', serif;
    font-size: 50px;

    margin-bottom: 12px;
}

.tagline {
    font-size: 15px;

    opacity: 0.85;
    margin-bottom: 42px;
}

.soon {
    font-size: 17px;

    border-top: 1px solid rgba(255,255,255,0.4);
    padding-top: 18px;
}
