@font-face {
  font-family: Vazir; /* set name */
  src: url(Vazir.ttf); /* url of the font */
}
@font-face {
    font-family: VazirFD;
    src: url(Vazir-FD-WOL.ttf);
}

html {
    background: #020024;
    background: linear-gradient(18deg, rgba(2, 0, 36, 1) 27%, rgba(9, 9, 121, 1) 53%);
    background-repeat:repeat-x;
    background-attachment:fixed;
    background-position: left top;
}

body {
    font-family: Vazir;
    color: white;
}

.navbar {
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    padding: 10px;
    gap: 10px;
}

.navlink {
    text-decoration: none;
    color: white;
}

.button {
    border-radius: 15px;
    padding: 8px;
    background-color: blue;
    text-decoration: none;
    color: white;
}