@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}

/* navigation baar  */
li {
    list-style: none;
}

a {
    text-decoration: none;
    font-size: 21px;
    font-weight: bold;
    color: #4AA82E;
}

a:hover {
    color: #626b12;
}

/*header start */
header {
    position: relative;
    padding: 0 2rem;
    background: #000000;
    border-bottom: 2px solid #4AA82E;
    border-top: 2px solid #4AA82E;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0a0a0a;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #CAD0D3;
}

.navbar .links {
    text-decoration: none;
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    background: #313131;
    color: #f1f1f1;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover {
    outline: 1px solid rgb(125, 247, 77);
    background: #585858;
    color: rgb(237, 236, 236);
    box-shadow: 1px 2px 15px 2px #1a0404;
    cursor: pointer;
}

.action_btn:active {
    scale: 0.95;
}

/* dropdwon menu*/
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    height: 0;
    top: 60px;
    width: 500px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 1.0s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    z-index: 1000;
    height: 180px;
    border-bottom: 3px solid #CAD0D3;
}

.dropdown_menu li {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* responsive design*/
@media(max-width: 992px) {

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
        color: #CAD0D3;
    }

    .dropdown_menu {
        display: block;
    }
}

@media(max-width: 576px) {
    .navbar {
        height: 40px;
    }

    .navbar .logo a {
        font-size: 1rem;
    }

    .dropdown_menu {
        left: 2rem;
        width: unset;
        z-index: 1000;
    }
}
.logo img {
    width: 90px;
    height: 45px;
    margin: 7px 0px 0px 0px 
}
@media (max-width:500px){
    .logo img {
        width: 73px;
        height: 37px;
    }
}

/* section two css */
.sec_two {
    width: 88%;
    height: 70vh;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    padding: 2px;
}
.cap_head{
    font-size: 20px;
    color: rgb(72, 223, 234);
    font-weight: bold;
    float: left;
}
.filename a{
    font-size: 16px;
    color: black;
    border-bottom: 1px dashed;
}
@media (max-width:1025px) {
    .sec_two {
        height: 35vh;
    }
}
@media (max-width:431px) {
    .sec_two {
        height: 37.7vh;
    }
    .cap_head{
        font-size: 18px;
    }
    .filename a{
        font-size: 14px;
    }
}
@media (max-width:391px) {
    .sec_two {
        height: 38vh;
    }
    
}
@media (max-width:376px) {
    .sec_two {
        height: 35vh;
    }
    .cap_head{
        font-size: 15px;
    }
    .filename a{
        font-size: 10px;
    }
}

/* last */
.copyright{
    width: 100%;
    background-color: #333;
    text-align: end;
    margin-top: -17px;
}
p .last_a{
    color: #CAD0D3;
    font-size: 7px;
    margin-right: 10px;
}
@media(max-with:500px){
    p .last_a{
    color: #CAD0D3;
    font-size: 4px;
        
    }
}
