@import url('fontiran.css');

* {
    font-family: dana !important;
    margin: 0;
    padding: 0;
    direction: rtl;
}

body {
    background: url("/landing/img/background.png");
    background-size: cover;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);

    padding: 8px 32px;
    box-sizing: border-box;

    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
}

.logo {
    color: #F5B219;
    font-size: 48px;
}

.btn {
    text-decoration: none;
    background-color: white;
    border-radius: 999px;
    padding: 8px 32px;
    font-size: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: fit-content;
    height: fit-content;
}

.btn-orange {
    background-color: #F5B219;
    color: black;

    background: none;
    color: #F5B219;
    border: 3px solid #F5B219;

    transition: all 0.5s;
}

.btn-orange:hover {
    background-color: #F5B219;
    color: black;
}



.landing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 16px;
}

.landing-title {
    color: #F5B219;
    font-size: 52px;
    text-align: center;
}

@media (max-width: 550px) {
    .landing-title {
        font-size: 44px;
    }
}