.cover {
    background: url(cover) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.cover-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
}


.cover-profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 15px;
}

.cover h1 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.cover p {
    font-size: 1.2rem;
}
head
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f172a;
    color: #fff;
}

header {
    background: #00eca5;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    margin: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #facc15;
}
#about h2{
    color: #000000;
}
#about p {
    color: #0a0202;
}

section {
    padding: 60px 20px;
    text-align: center;
    margin: 20px;
    border-radius: 10px;
    background-color: #ece7e7;
}

h1 {
    margin-bottom: 20px;
    color: green;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.gallery img {
    width: 200px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal img {
    display: block;
    margin: auto;
    max-width: 80%;
}

.close {
    position: absolute;
    top: 40px;
    right: 50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.gallery {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.gallery video {
    cursor: pointer;
    border-radius: 8px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
    padding-top: 60px;
}

.video-table video{
    width: 300px; 
    height: 350px;              
    border-radius: 10px;  
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
}

#skills p{
    color: #000000;
}
