



nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 700;
}

main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    min-height: 1000px;

}

main .img {
    width: 40%;
    height: 400px;
    background-image: url('../images/Guycutinggrass.png');
    background-size: cover;
    background-position: center;
    border: 2px solid #ddd;
    border-radius: 10px;
}

main .about {
    width: 50%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


