/* hero */
.hero-section{
    position: relative;
    /* background-color: var(--primary-background); */
    background-color: #000000;
    border-left: #314e54 solid 2px;
    border-right: #314e54 solid 2px;
    border-bottom: #314e54 solid 2px;;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.hero-info{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    margin: 20px;
}
.hero-info h1, .hero-info p{
    background-color: black;
}
.skill-icon{
    position: absolute;
    transition: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.skill-icon i{
    font-size: 3em;
}
.skill-icon p{
    font-size:medium;
    color: white;
}
.skill-icon img{
    width: 50px;
    height: 50px;
}
#hero-image{
    border: 10px solid #000000;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}