@font-face {
    font-family: "Bukra-Regular";
    src: url("./assets/fonts/29LTBukra/29ltbukraregular.ttf") format("truetype");
    font-style: normal;
}


@font-face {
    font-family: "Bukra-Bold";
    src: url("./assets/fonts/29LTBukra/29ltbukrabold.ttf") format("truetype");
    font-style: normal;
}

* {
    font-family: "Bukra-Regular";
}

body {
    margin: 0;
}

.landing-page__container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(./assets/images/bg.svg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.content__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.title--main {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #FFFFFF;
    direction: rtl;
    font-family: Bukra-Bold;
}

.title--sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #F2F4F5;
}

.link {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px 54px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #2B4658;
}