html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    /* Stay in the background */
}

/* Header Styles */
header {
    padding: 10px 0;
}

.nav-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-items .nav-Home,
.nav-items .nav-about {
    display: flex;
    align-items: center;
}

.nav-items a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-variant: small-caps;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.nav-items i {
    margin-right: 8px;
}

.nav-items a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Proficiency Section */
.proficiency {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.language {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 120px;
}

.language img {
    width: 80px; /* Make images bigger */
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px; /* Add border radius for rounded edges */
}

.language span {
    font-size: 16px; /* Increase font size */
    color: #E0FFFF; /* Light Cyan for dark background */
}



p
 {
    text-align: center;
    background: black;
    background: linear-gradient(90deg, #edfad8, #fce4ec);
    /* Light blue to pink gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 
}

h1 , h2 , h3 , h4 , h5 {
    text-align: center;
    color:yellow;
    font-variant: small-caps;
    font-style: italic;
    font-size: xx-large;
    margin-bottom: 50px;
}

p {
    font-size: 22px; /* Increase font size of paragraphs */
}



footer {
    padding: 10px 0;
    
    margin-top: auto;
    /* Push footer to the bottom */
}

.footer-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-items .social-media {
    display: flex;
    gap: 10px;
}

.social-media a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    font-size:medium;
}

.social-media a:hover {
    color: #00f;
}

.footer-items .copyright p {
    margin: 0;
    color: white;
    font-size: medium;
}

/* Media Query for Small Devices */
@media (max-width: 768px) {
    .nav-items {
        flex-direction: column;
        gap: 10px;
    }

    .nav-items a {
        font-size: 14px;
        padding: 8px 15px;
    }

    .proficiency {
        flex-direction: column;
        padding: 10px;
    }

    .row {
        flex-direction: column;
        gap: 15px;
    }

    .language img {
        width: 60px; /* Reduce image size for smaller screens */
    }

    .language span {
        font-size: 14px; /* Reduce font size */
    }

    h1, h2, h3, h4, h5 {
        font-size: large; /* Adjust heading size for smaller devices */
        margin-bottom: 30px;
    }

    p {
        font-size: 18px; /* Reduce paragraph size */
        padding: 0 10px; /* Add padding to avoid text hitting screen edges */
    }

    footer {
        padding: 5px 0;
    }

    .footer-items {
        flex-direction: column;
        align-items: center;
    }

    .footer-items .social-media {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-items .copyright {
        margin-top: 10px;
    }
}

