

.slideshow {
    position: relative; /* Add this to make the container a reference for absolute positioning */
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.slideshow img {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0; /* Start with zero opacity */
    transition: opacity 1s ease-in-out;
    top: 0;
}

.about {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.753);
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    border-radius: 15px;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.about h1 {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 20px;
}

.about-me {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.about-me .item {
    margin: 20px;
    width: 45%;
    border-radius: 15px;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
    font-size: 20px;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .about-me .item {
        width: 100%;
    }
    
    
}