* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}


body {
    background-color: rgb(0, 0, 0);
    color: white;
}


header {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(128, 128, 128, 0.546);
}

.container {
    margin: 20px 12vw;
    display: flex;
    align-items: center;
}

.navbar {
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.navbar .logo {
    height: 30px;
}

.navbar nav {
    display: flex;
    gap: 30px;
}

.navbar nav a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: .3s ease-in-out all;
    text-underline-offset: 5px;
}

.navbar nav a:hover {
    text-decoration: underline;
    opacity: 0.9;
}


button.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transform: scale(1.3);
}



button.menu span {
    color: rgb(199, 199, 199);
    border-radius: 50%;
    padding: 5px;
    transition: .4s ease-in-out all;
}

main .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10vw;
}

button.menu {
    display: none;
}


.hero .left {
    width: 50vw;
}


.left h1 {
    margin-bottom: 20px;
    font-size: 3em;
}

.left p {
    font-size: 1.1em;
}

.left .github a {
    text-decoration: none;
    color: black;
}

.left .github {
    margin-top: 20px;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 1em;
    border: none;
    cursor: pointer;
    box-shadow: 0px 2px 5px 2px rgba(255, 255, 255, 0.281);
    transition: .3s ease-in-out all;
}

.left .github:hover {
    box-shadow: 0px 0px 12px 2px rgba(255, 255, 255, 0.281);
    transform: translate(0, -2px);
}

.left .github i {
    font-size: 1em;
}

.right {
    overflow: hidden;
    width: 50vw;
    text-align: center;
}

.right img {
    width: 100%;
}

footer {
    border-top: 1px solid rgba(128, 128, 128, 0.546);
}

footer .container {
    color: rgba(213, 213, 213, 0.671);
    justify-content: space-between;
}

footer .container a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}




@media (max-width: 600px) {
    main .hero {
        flex-direction: column;
    }

    .left {
        width: 100%;
        font-size: 14px;
    }

    .dark {
        display: none;
    }

    button.menu {
        display: block;
    }

    .navbar nav {
        position: absolute;
        margin: auto;
        display: none;
        flex-direction: column;
        top: 60px;
        background-color: rgb(0, 0, 0);
        backdrop-filter: blur(5px);
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 30px 0;
        box-shadow: 0 4px 6px 5px rgba(0, 0, 0, 0.8);

    }

    footer .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
}