/* button/ hero = landing page  */

.hero {
    background-color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #666666;
    
    margin-bottom: 40px;
}

.black-button-resume {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    background-color: #000000;
    /* color: #ffffff; */
    color: white;
    border-radius: 50px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.black-button-resume:hover {
    /* background-color: #333333; */
    background-color: white;
    color: black;
}


.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

a.black-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

a.black-button:hover {
    background-color: transparent;
    color: black;
}


.hero-content {
    display: flex;
    align-items: center;
}

.hero-image {
    width: 300px;
    margin-right: 40px;
}

.hero-text {
    text-align: left;
}

/* Rest of the CSS code remains as previously shared */
.hero {
    background-color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.landingcontainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-image {
    width: 300px;
    margin-right: 40px;
}

.hero-text {
    text-align: left;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Rest of the CSS code remains the same */
.hero {
    background-color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.landingcontainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 300px;
    margin-right: 0;
    margin-bottom: 20px;
}

.hero-text {
    text-align: center;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}



@media screen and (min-width: 768px) {
    .hero-image {
        width: 300px;
        margin-right: 40px;
        margin-bottom: 0;
    }

    .hero-text {
        text-align: left;
    }
}

/* text projects page  */

.projects {
margin-top: 5%;
padding-left: 25%;
color: black;
font-weight: bold;

}

.projectstext {
    
    padding-left: 25%;
    color: black;
    font-weight: bold;

}