.hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

.hero1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/banner.avif");
}

.hero2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/handshake.jpg");
}

.hero3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/thumbsup.jpg");
}
  
.hero-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
}

.hero-content h1 {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0;
}

.hero-content p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-content .button {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    font-weight: bold;
    padding: 0.75rem 2rem;
    text-decoration: none;
}

.hero-content .button:hover {
    cursor: pointer;
    color: var(--white-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--white-color);
}