@font-face {
    font-family: 'MyFonts';
    src: url('../assets/Fonts/heading.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'MyFonts';
    src: url('../assets/Fonts/paragraph.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}




body {
    margin: 0;
    font-family: 'MyFonts', sans-serif;
    background: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.pdf-view {
    width: 100%;
    height: 500px;
    box-shadow:     
        0 0 8px rgba(138, 180, 248, 0.6),
        0 0 16px rgba(138, 180, 248, 0.4),
        0 0 24px rgba(138, 180, 248, 0.2);
    border: 2px solid black;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .pdf-view {
        height: 350px;
    }
}

h3{
    font-family: 'MyFonts',sans-serif;
    font-style: normal;
    font-size: 20px;
    text-shadow:     
        0 0 8px rgba(138, 180, 248, 0.6),
        0 0 16px rgba(138, 180, 248, 0.4),
        0 0 24px rgba(138, 180, 248, 0.2);
}