
/* Default Font */
@font-face {
    font-family: VazirmatnRegular;
    src: url(/assets/fonts/Vazirmatn-Regular.woff2);
}

* {
    font-family: VazirmatnRegular;
}


html {
    scroll-behavior: smooth;
}



/* Body */
body {
    margin: 0;
}



/* Links */
a {
    color: #1c39bb;
    text-decoration: none;
}



/* Header */
.div-header {
    padding: 24px 9px;
    background-color: #1c39bb;
    text-align: center;
    border-radius: 18px 18px 0px 0px;
    margin: 18px;
    margin-bottom: 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.div-header .img-logo {
    margin-top: 18px;
}

.div-header h1 {
    color: white;
    font-size: xxx-large;
    font-weight: bold;
    margin-top: 18px;
}

.div-header p {
    color: white;
    font-size: x-large;
}



/* Sub-Header */
.div-subheader {
    background-color: #ffffff64;
    border-radius: 0px 0px 18px 18px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: 18px;
    margin-top: 0px;
    text-align: center;
    display: flex;
}

.div-subheader a {
    flex-grow: 1;
    margin: 9px;
    font-size: medium;
    border-radius: 18px;
}

.div-subheader a {
    list-style: none;
    padding: 18px;
    border-radius: 18px;
}

.div-subheader .a-to-panel {
    border: 2px dotted #deb645;
}


.div-subheader a:hover {
    background-color: #deb645;
    cursor: pointer;
    font-weight: bold;
}

.div-subheader a:active {
    background-color: #1c39bb39;
}




/* Content */
.div-content {
    margin: 18px;
    margin-top: 90px;
    margin-bottom: 90px;
    text-align: center;
}

.div-content .p-welcome {
    font-size: xxx-large;
    font-weight: bold;
    margin-bottom: 0px;
}

.div-content .p-subwelcome {
    font-size: x-large;
}


.div-content .inline-amlakiyar {
    color: #deb645;
    font-weight: bold;
    border-bottom: 3px dotted #deb645;
}

.div-content .button-start {
    background-color: #1c39bb;
    border-radius: 18px;
    font-size: xx-large;
    color: white;
    cursor: pointer;
    padding: 12px 30px;
    margin-top: 36px;
    border: 0px solid #1c39bb;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.div-content .button-start:hover {
    background-color: #1c39bbac;
}

.div-content .button-start:active {
    background-color: #deb645;
}


