.wraperMenu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.topnav {
    background-color: #f80;
    width: 89%;
    margin: 0 auto;
}

.topnav a {
    color: #000;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 0.5px;
    padding: 0 10px;
    position: relative;
}

.topnav .icon {
    display: none;
}

.dropbtn {
    background-color: inherit;
    padding: 16px;
    border: none;
    cursor: pointer;
    color: #000;
    font-size: 17px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    list-style-type: none;
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

@media (min-width: 900px) {
    .topnav {
        border-top: 2px solid #f80;
        border-bottom: 2px solid #f80;
        border-left: none;
        border-right: none;
        background-color: rgb(245, 213, 176);
        width: 89%;
        margin: 0 auto;
    }
    
    .topnav a {
        color: #000;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        letter-spacing: 0.5px;
        padding: 0 10px;
        position: relative;
    }
    
    .topnav a::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        height: 2px;
        width: 0;
        background-color: #ff3c78;
        transition: 0.5s ease-in-out;
    }
    
    .topnav a:hover{
        color: #f80;
        font-weight: 600;
    }
    
    .topnav a:hover::after{
        width: 100%;
    }
}

@media (max-width: 900px) {
    .topnav {
        overflow: hidden;
        height: 50px;
        line-height: 50px;
        border-radius: 5px;
    }

    .topnav a {
        float: left;
        display: block;
        color: #fff;
    }

    .topnav a:not(:first-child),
    .dropdown .dropbtn {
        display: none;
    }

    .dropbtn {
        color: #fff;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

    .topnav.responsive {
        position: relative;
        width: 100%;
        height: auto;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        color: #fff;
    }

    .topnav.responsive .dropdown {
        float: none;
    }

    .topnav.responsive .dropdown-content {
        position: relative;
        min-width: 496px;
        border-radius: 0.5rem;
        background-color: inherit;
    }

    .dropdown-content li {
        border-bottom: 1px solid #fafafa;
    }

    .topnav.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0 12px;
    }
}