@font-face {
    font-family: 'emirates';
    src: url('/font/emirates_medium-webfont.woff2') format('woff2'),
         url('/font/emirates_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: emirates, Arial, sans-serif;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-links li {
    display: inline;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.hero {
    background: url('emirates_hero.png') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    color: #d10a11;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.about,
.contact,
.hiring, 
.aircrafts {
    padding: 50px 0;
}

.about h2,
.contact h2,
.hiring h2, 
.aircrafts h2 {
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 0.8em;
}

/* Discord link styling */
.discord-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #7289da;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.discord-link i {
    margin-right: 5px;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #f2f2f2;
}

::-webkit-scrollbar-thumb {
  background-color: #cdcdcd;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}

::-webkit-scrollbar-thumb:hover {
background-color: #9e9e9e;
