@import url("https://fonts.googleapis.com/css2?family=Poppins%3Awght%40100%3B200%3B300%3B400%3B500%3B600&display=swap%27%29%3B");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html{
    font-size: 62.5%;

}

body{
    width:100%;
    height: 300%;
    overflow-x: hidden;
    background-color: #ebebeb;
    color: #3a6ea5;

}

header{
    margin-top: 55px;
    position:static;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: #004e98;
}

.logo{
    font-size: 3rem;
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover{
    transform: scale(1.1);

}

nav{
    background-color: #213830;
}

nav a{
    font-size: 1.8rem;
    
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;


}

nav a:hover,
nav a.active{
    color: white;
    border-bottom: 3px solid white;
}

@media(max-width:7680px){
    nav{
        position: absolute;
        top: 0%;
        right: 0;
        width: 40%;
        border-left: 3px solid #3a6ea5;
        border-bottom: 3px solid #3a6ea5;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #004e98;
        border-top: 0.1rem gray;


    }

    nav.active{
        display: block;
        font-size: 2rem;
        margin: 3rem;
    }

    nav a{
        display: block;
        font-size: 2rem;
        margin: 3rem;
        
    }

    nav a:hover{
        font-size: 3rem;
    }
    nav a.active{
        padding: 1rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #3a6ea5;
    }
}

.pdf-part{
    margin-top: 150px;
    width: 80%;
    height:300vh;
    margin-left: 10%;
    align-self: center;
    padding-top: 100px;
    
}

.embed-pdf{
    width: 100%;
    height: 100%;
}

