*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


.main {
    width: 100%;
    background-image: url(Logos/worldwide-connection-blue-background-illustration-vector_53876-76824.avif);
    background-position: center;
    background-size: cover;
    height: 110vh;
}

.navbar {
    width: 1200px;
    height: 75px;
    margin: auto;
}

.icon {
    width: 200px;
    float: left;
    height: 70px;
}

.logo {
    color: #02031b;
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 10px;
    float: left;
    padding-top: 50px;
}

#logotext {
    text-align: right;
    color: #3d3e40;
}

.menu {
    width: 400px;
    float: left;
    height: 90px;
}

ul {
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}


ul li {
    list-style: none;
    margin-left: 20px;
    margin-top: 25px;
    font-size: 16px;
}

ul li a {
    text-decoration: #fff;
    font-family: Arial;
    font-weight: bold;
    transition: 0.6s ease-in-out;
    color: #fff;
}

ul li a:hover {
    color: #b33803;
    background: #02031b;
    padding: 10px;
    border-radius: 25px;
}


.content {
    width: 600px;
    height: auto;
    margin: 40px;
    color: #676262f2;
    position: relative;
    margin-top: 100px;
}

.content .par {
    padding: 20px;
    padding-bottom: 25px;
    font-family: Arial;
    letter-spacing: 1.2px;
    line-height: 30px;
}


.buttons {
    display: flex;
    margin: 0 280px;
    margin-top: 170px;
    height: 50px;
    border-radius: 20px;
    cursor: pointer;
}


.btn {
    position: relative;
    margin: 8px;
    border-radius: 10px;
    box-shadow: #262626;
    font-size: 16px;
    color: #fff;
    letter-spacing: .25em;
    text-decoration: none;
    background: #262c3784;
    padding: 10px 30px;
    transition: .3s ease-in;
}


.btn:hover {
    color: #00eeff;
    font-weight: bold;
    letter-spacing: .5em;
}


@media (max-width: 768px) {
    .hamburger {
        display: block;

    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);

    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);

    }

    .buttons {
        position: fixed;
        left: -160px;
        top: 70px;
        gap: 0;
        flex-direction: column;
        width: 220px;
        text-align: center;
        transition: 0.3s;
        height: 50px;
        border-radius: 20px;
        cursor: pointer;
        float: left;
    }

    .content {
        display: none;
    }

    #logotext {
        text-align: right;
        color: #3d3e40;
        font-size: 25px;
        color: #ffffffd8;
    }

    li img {
        width: 200px;
    }

    .main {
        display: flexbox;
        background-image: none;
    }

    body {
        background-image: url(/Logos/dark-blue-technology-background-vector-with-futuristic-waves_53876-136344.avif);
    }

}