
/*|==========================|HERO|==========================|*/
.hero{
    margin:0;
    padding:0;
    width:100%;
    min-height:100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    }

.hero .img_container{
    text-align: center;
}
.hero img{
    width:70px;
}
.back_container{
    width:100%;
    min-height:80vh;
    display:flex;
}
.name_container{
    backdrop-filter: blur(5px);
    margin: auto;
    max-width:900px;
    background-color: var(--container_background_1);
    padding: 30px;
    border-radius: 60px;
    z-index: 2;
    box-shadow: 5px 5px 0px 0px var(--highlight_color_5); 
}

.hero .name{
    margin:0;
    text-align: center;
    font-size: 60px;
    font-family: "Montserrat",sans-serif;
    font-style: normal;
    
    animation: start_blur_animation linear 0.3s 1;
    
    color: var(--font_color_1);
    filter: blur(0px);
    transition: transform 0.1s linear;
}
.hero .name:hover{
    transform: scale(1.1);
    cursor:default;
    user-select: none;
}


@keyframes continue_blur_animation{
    0% {
        box-shadow: inset 0 0 20px 2px rgba(52, 0, 134, 0);
    }
}
@keyframes start_blur_animation{
    0%{
        filter: blur(10px);
    }
    100%{
        filter: blur(0px)
    }
}
/*|==========================|description|==========================|*/
.hero .description{
    color: var(--font_color_1);
    font-family: Montserrat;
    transition: transform 0.1s linear;
    cursor:default;
    user-select: none;
    display: flex;
    justify-content: center;
    margin-top:20px;
    
}
.hero .square{
    text-align: center;
    border: 2px solid var(--highlight_color_3);
    margin: 0 20px;
    padding:0 30px;
    border-radius: 10px;
    transition: transform 0.1s linear;
  display: flex;
  align-items: center; /* Vertical alignment */
}
.square p{
    font-size: 20px;
}
.hero .square:hover{
    transform: scale(1.2);
}

.arrow_down_circle{
    display: flex;
    justify-content: center;
    align-items: center;
    width:100px;
    height:100px;
    border: 4px solid var(--highlight_color_2);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    margin-top:25px;
    transition: transform 0.1s linear;
    
    text-align: center;
}
.arrow_down_circle:hover{
    transform: scale(1.2);
    border: 4px solid var(--highlight_color_1);
}
.arrow_down_circle:active{
    transform: scale(1);
}
.arrow_down_circle a{
    font-size: 70px;
    font-family:monospace;
    text-align: center;
    color: var(--highlight_color_2);
    cursor:default;
    user-select: none;
    text-decoration: none;
    
}

@media(max-width:683px){
    .hero .square:hover{
        transform: scale(1);
    }
    .arrow_down_circle:hover{
        transform: scale(1);
        border: 4px solid var(--highlight_color_2);
    }
    .arrow_down_circle:active{
        transform: scale(0.9);
        border: 4px solid var(--highlight_color_1);
    }
    .hero .name:hover{
        transform: none;
    }
    .hero .description{
        display: block;
    }
    .hero .square{
        margin-top:30px;
        margin-left:auto;
        margin-right:auto;
        width:60%;
        display: block;
    }

}
@media(max-width:460px){
    .name_container{
        width: 100%;
        padding:30px 0;
        border-radius: 0;
    }
}