/* Reset some default browser styles */
body, h1, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Apply styles to the header */
header {
    text-align: center;
    /* background-color: #333; */
    background-image: linear-gradient(#De1a1a,#acbed8, #e3ebf7);
    color: #fff;
    padding: 20px;
}

header h1 {
    font-size: 36px;
}

/* Style the navigation menu */
nav ul {
    list-style-type: none;
    text-align: center;
}

nav li {
    display: inline;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Style sections (e.g., About, Experience, Education) */
section {
    padding: 20px;
}

/* Apply styles to the footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

/* Style the portfolio section */
#portfolio {
    padding: 20px;
}

/* Style the image gallery */
#image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Style individual gallery items (thumbnail images) */
#image-gallery a {
    text-decoration: none;
    color: #333;
}

#image-gallery img {
    max-width: 50%;
    height: auto;
    border: 2px solid #ddd;
    transition: transform 0.2s ease-in-out;
}

#image-gallery img:hover {
    transform: scale(1.05);
}

/* Style the video section */
#video {
    padding: 20px;
}

/* Style the video container */
#video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

/* Style the embedded iframe */
#video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
