* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IRANSansWeb','Vazirmatn', sans-serif;
}

body {
    background: #0a1a2f;
    background-image: url('../images/bg-main.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}


/* Header */
.header {
    background: #090e4e;
    padding: 15px 0;
}

.header .container {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    align-items: center;
    justify-self: center;
    margin-right: 45%;
}
.logo img{
    width: 115px;
}

.shahabco-link{
    text-decoration: none;
    background-color: #f81c1c;
    border-radius: 15px;
    padding: 10px;
    color: #081425;
}
.shahabco-link:hover{
    color: #f81c1c;
    border: #f81c1c 1px solid;
    background: #ffffff07;
    font-weight: bold;
}

.menu{
    background-color: #081425;
    display: block;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    position: relative;
}

nav a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}
nav li:hover{
    border-bottom: #f81c1c 1.2px solid;
    border-radius: 30px;
    font-weight: bold;
}

.dropdown {
    display: none;
    position: absolute;
    background: #102a44;
    top: 40px;
    right: 0;
    min-width: 160px;
    z-index: 9999;
}

nav li:hover .dropdown {
    display: block;
}

.container{
    text-align: center;
}
pre{
    text-wrap-mode: wrap;
    text-align: right;
    background-color: #050d1a2e;
    backdrop-filter: blur(30px);
    padding: 10px;
    border-radius: 30px;
}
pre h3{
    text-shadow: #050d1a 0px 3px 7px;
}
pre img{
    display: block;
    justify-self: center;
    max-width: 400px;
}


/* Footer */
.footer {
    background: #050d1a;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.footer h2{
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.footer-sec{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 15px;
}
.footer-sec a{
    text-decoration: none;
    color: #fff;
    margin: 4px;
}
.footer-sec a:hover{
    color: #f81c1c;
    font-weight: bold;
}
