#particles
{
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: all;
	-webkit-mask-image: linear-gradient(to bottom, transparent 50px, black 200px);
	mask-image: linear-gradient(to bottom, transparent 50px, black 200px);
}

#home_section {
	position: relative;
	height: 100vh;
	max-width: 100%;
	background: radial-gradient(ellipse at bottom, #011d41 0%, #000000 100%);
	flex-direction: column-reverse;
    overflow: hidden;
}

#home_section .content {
    pointer-events: none;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; 
    padding-left: 10%;
    text-align: left;
}

#home_section .welcome {
	pointer-events: all;
	font-family: raleway_semi_bold;
	font-size: 20px;
	color: var(--bio-color);
}

#home_section .name {
	pointer-events: all;
	font-family: calibre_semi_bold;
	font-size: clamp(40px, 8vw, 80px);
	color: var(--header-links-color);
	margin-top: 25px;
}

#home_section .title {
	pointer-events: all;
	font-family: calibre_semi_bold;
	font-size: clamp(35px, 7vw, 70px);
	color: var(--bio-color);
}

#home_section .bio {
    pointer-events: all;
    font-family: calibre_regular;
    max-width: 520px;
    font-size: 20px;
    color: var(--bio-color);
    line-height: 1.3;
    margin-top: 16px;
    text-align: justify;
}
@media (max-width: 600px) {
    #home_section .bio {
        font-size: 18px;
        max-width: 80%;
    }
}

#home_section .see-more_button {
	margin-top: 40px;
}