*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    background: inherit;
    color: inherit;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color .3s;
}

.container-navbar {
    min-width: 80%;
    display: flex;
    justify-content: space-between;
    padding: 12px;
}

.navbar-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #f7f7f7;
}

.navbar-ul img{
    width: 2.7rem;
}

.navbar-ul li a {
    font-weight: 600;
    opacity: .8;
}

.navbar-ul li a:hover {
    opacity: 1;
}

.navbar-toggle {
    display: none;
    color: white;
    font-size: 1.5em;
}

.sidebar {
    display: none;
}

.box:nth-child(2) {
    display: flex;
    flex-direction: row-reverse;
}

.box {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0;
}

.img {
    flex: 1;
    max-width: 100%;
}

.wrapper {
    flex: 1;
}

.about {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("img/bg.jpg");
    background-size: cover;
    color: white;
    gap: .5em;
}

.title {
    width: 80%;
    font-family: "Playpen Sans", cursive;
    letter-spacing: .1em;
    font-size: 2vw;
    font-weight: 700;
    background-color: transparent;
}

.description {
    width: 80%;
    margin: 0 20px;
    line-height: 1.6em;
    text-align: justify;
    font-size: 1vw;
    font-family: "Playpen Sans", cursive;
    background-color: transparent;
}

.link {
    width: 80%;
    font-size: 1.2vw;
    margin-top: 20px;
    color: antiquewhite;
}

i {
    background-color: transparent;
}

footer {
    display: flex;
    flex-direction: row-reverse;
    background-color: #111111;
}

.footer-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 7px;
    width: 100%;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon a {
    padding: 7px;
    background-color: white;
    margin: 5px;
    border-radius: 50%;
}

.social-icon a i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .7em;
    color: black;
    opacity: 0.9;
}

.social-icon a:hover {
    background-color: #000;
    transition: 0.5s;
}

.social-icon a:hover i {
    color: white;
    transition: 0.5s;
}

.footer-bottom {
    background-color: #000000;
    padding: 10px;
    text-align: center;
}

.footer-bottom p {
    color: white;
    font-size: .7em;
    margin-right: 10px;
}

@media (max-width: 786px) {
    .navbar-ul li {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .sidebar {
        display: flex;
        position: fixed;
        top: 0;
        right: -250px;
        height: 100%;
        background-color: #000000;
        color: white;
        transition: right 0.3s ease;
        z-index: 9999;
    }

    .sidebar-ul {
        padding: 25px;
        padding-top: 60px;
        width: 185px;
    }

    .sidebar-ul li {
        margin: 20px 0;
    }

    .sidebar-ul li a {
        color: white;
        font-weight: 600;
        opacity: .8;
    }

    .sidebar-ul li a:hover {
        opacity: 1;
    }


    .sidebar-icon {
        display: flex;
        position: absolute;
        gap: 20px;
        font-size: 1.5em;
        bottom: 17px;
        right: 20px;
    }

    .sidebar.active {
        right: 0;
    }

    .close-btn {
        position: absolute;
        top: 17px;
        right: 32px;
        cursor: pointer;
        font-size: 24px;
    }

    .box {
        display: flex;
        flex-direction: column;
    }

    .box:nth-child(2) {
        display: flex;
        flex-direction: column;
    }

    .img {
        width: 100%;
        height: 50%;
        object-fit: cover;
    }

    .wrapper {
        width: 100%;
        height: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about {
        display: flex;
        flex-direction: column;
        padding: 30px;
    }

    .title {
        width: 90%;
        font-size: 1.5rem;

    }

    .description {
        width: 90%;
        font-size: 1rem;
        margin: 0;
        text-align: justify;
    }

    .link {
        width: 90%;
        font-size: 1rem;
    }
}