header {
    aspect-ratio: 960 / 373;
    background-size: cover;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50 0px;
    max-width: 1100px;
    margin: 0 auto;
}

header>nav>svg {
    width: 100px;
    margin-right: 270px;
    fill: white !important;

}

header a {
    color: #FEFDFB;
    font-family: "Baloo Bhai 2";
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

header h1 {
    color: #FFF;
    text-align: center;
    font-family: Kalam;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

header h2 {
    color: #FFF;
    text-align: center;
    font-family: "Baloo Bhai 2";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 130px;
    align-items: center;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

#menu:checked~.mobile-menu {
    display: flex;
}

.menu {
    display: none;
}

.mobile-menu a {
    color: var(--near-black);
    font-size: 18px;
    font-weight: 900;
}

@media only screen and (max-width: 1000px) {
    .menu {
        display: block;
    }

    header nav a {
        display: none;
    }

    header nav {
        padding: 10px;
    }

    header>nav>img {
        width: 60px;
        margin: 0;
    }

    header h1 {
        font-size: 23px;
        margin: 0;
    }

    header h2 {
        font-size: 18px;
        margin: 0;
    }
}






header a {
    position: relative;
    transition: color 0.3s ease;
}

header a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--burnt-orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

header a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}