.hero {
    background-image: url(assets/stacked-waves-haikei.svg);
    background-size: cover;
    background-position: center;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero img {
    border-radius: 100%;
}

.hero .hero-text {
    max-width: 600px;
}

.hero .hero-text h1 {
    font-size: 5rem;
    margin-bottom: 16px;
}

.hero .hero-text p {
    font-size: 1.5rem;
    color: hsl(0, 0%, 80%);
}

.hero .hero-links {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.hero .hero-links a {
    
    background-color: hsl(100, 100%, 10%);
    color: white;
    border-radius: 35px;
   text-decoration: none;
    padding: 10px 24px;
    transition: all 0.15s ease;
}

.hero .hero-links a:hover {
    background-color: hsl(100, 100%, 25%);
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    size-adjust: 25px;
}

.about {
    max-width: 1100px;
    margin: 3rem;
    padding: 24px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: hsl(0, 0%, 15%);
    transition: all 0.15s ease;
}

.about:hover {
    background-color: hsl(0, 0%, 25%);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.professions {
    font-size: 1.5rem;

    color: hsl(0, 0%, 80%);
}

.professions h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    margin-left: 2rem;
}

.cards {
    margin: 3rem;
    display: flex;
    gap: 24px;
}

.card {
    background-color: hsl(0, 0%, 15%);
    color: hsl(0, 0%, 80%);
    padding: 2.5rem;
    text-align: center;
    width: 250px;
    height: 250px;
    border-radius: 1rem;
    transition: all 0.15s ease;
}

.card:hover {
    background-color: hsl(0, 0%, 25%);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}