* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Zain', sans-serif;
}
@font-face {
    font-family: "neon";
    src: url(../fonts/Neoneon.otf);
}

body {
    background-color: #1F1F1F;
}

main {
    width: 100%;
    margin: 20px auto;
    color: #fff;
}

.aboutsite, .contactsite {
    display: none;
}

.start {
    width: 100%;
    height: 94vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
}
.loaddiv{
    width: 100%;
}
.start img {
    width: 80%;
    max-width: 350px;
    display: none;
    margin: 0 auto;
}

.startdiv {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
}

.startdiv h1 {
    font-size: 70px;
    font-family: "neon";
    animation: slider 1s ease-in-out;
}

.startdiv h5 {
    font-size: 30px;
    font-family: "Delius Unicase", serif;
    color: #00ff15;
    margin-top: 50px;
    animation: slider 1s forwards;
    opacity: 0;
    animation-delay: 1s;
}
@media screen and (max-width: 600px) {
    .startdiv h1{
        font-size: 40px;
    }
    .startdiv h5{
        font-size: 14px;
    }
    
}
.site {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    margin-top: 85px;
}


/*********** nav ************/

nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    color: #fff;
    border-bottom: 1px solid #fff;
    background-color: #000;
    box-shadow: 0px 0px 10px #ffffffb0;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 10px 20px;
}

.nav h2 {
    font-family: "neon";
}

.menu {
    width: 90%;
    display: none;
}

.menu ul {
    gap: 20px;
    list-style: none;
    width: 100%;
    direction: rtl;
}

.menu ul li {
    width: 100%;
    display: flex;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
    padding: 10px;
    width: 100%;
    border-bottom: 2px solid #00ff1500;
}

.menu ul li a:hover {
    border-bottom: 2px solid #00ff15;
}

.navact {
    background-color: #247200;
    color: #fff;
}

.nav i {
    font-size: 30px;
    cursor: pointer;
}

.fa-xmark {
    display: none;
}