/* Home Section */
#home {
    background: url('Pictures/20220516_141958.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content h1 {
    font-size: 10rem;
    margin-bottom: 10px;
    font-weight: bolder;
}

.home-content p {
    font-size: 1.5rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .home-content h1 {
        font-size: 2.5rem;
    }

    .home-content p {
        font-size: 1.2rem;
    }

    nav ul li {
        margin-left: 15px;
    }

    nav ul {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    #home {
        width: 100%;
    }
}



