@font-face {
  font-family: 'Vazir';
  src: url('fonts/Vazir.eot'); /* IE9 Compat Modes */
  src: url('fonts/Vazir.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('fonts/Vazir.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/Vazir.woff') format('woff'), /* Pretty Modern Browsers */
         url('fonts/Vazir.ttf')  format('truetype'), /* Safari, Android, iOS */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(10, 12, 12);
    color: white;
    font-family: 'Vazir';
    direction: rtl;
}

.vert {
    display: flex;
    flex-direction: column;
    width: 85%
}

.nav {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    text-align: right;
    padding: 5px;
    width: calc(100% - 10px);
    gap: 10px;
    position: fixed;
    box-sizing: border-box;
}

.navlink {
    text-decoration: none;
    color: white;
}

.btn {
    text-decoration: none;
    color:white;
    background-color: #ff0000;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s ease;

}

.btn:hover {
    width: 120%;
    height: 120%;
    font-size: 120%;
}

.btn:active {
    transform: translateY(2px);
    transition: 0.05s;
}
