#HeroPage {
    display: flex;
    flex-direction: row;
    min-height: 85vh;
    padding-top: 80px;
    color: var(--white);
    justify-content: center;
    align-items: center;
    gap: 40px;


    #mainPresentation {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        text-align: center;

        #title {
            font-size: 2.5em;
            font-weight: bold;
            color: var(--white);
            margin-bottom: 20px;
        }

        #subtitle {
            font-size: 1.5em;
            color: var(--white2);
            margin-bottom: 20px;
        }

        #description {
            width: 50vw;
            font-size: 1em;
            color: var(--white2);
            margin-bottom: 20px;
        }

        .downloadCV {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            padding: 10px;
            border-radius: 10px;
            background: var(--white);
            color: var(--black);
            cursor: pointer;
            transition: background 0.3s, color 0.3s;

            &:hover {
                background: var(--black);
                color: var(--white);
            }

            text-decoration: none;
        }

        .socials {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;

            a {
                margin: 0 10px;
                color: var(--white);
                font-size: 1.5em;
                transition: color 0.3s;

                &:hover {
                    color: var(--white2);
                }
            }

        }

    }

}