#bracket {
    background-color: transparent;
    height: 20px;
    width: 290px;
    border-bottom: 1px dashed rgb(169, 169, 169);
    border-radius: 10px;
    margin-top: 90px;
    opacity: 1;
    transition: opacity 0.3s;
}

#bracket_text {
    color: rgb(169, 169, 169);
    font-size: smaller;
    width: 330px;
    text-align: center;
    margin-top: -6px;
    opacity: 1;
    transition: opacity 0.3s;
}

.hello {
    font-size: 100px;
    font-weight: 600;
    width: max-content;
    margin-left: 5vw;
}

#bio {
    display: flex;
    width: 80vw;
    margin-left: 5vw;
    justify-content: space-between;
    font-size: 17px;
    margin-top: 2vh;
}

.right {
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-left: 5vw;
}

.featured {
    padding: 5px 10px 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.323);
    width: min-content;
    transition-duration: 0.3s;
}

.featured:hover {
    background-color: white;
    color: black;
    font-weight: 400;
}

#home_footer {
    position: fixed;
    bottom: 0px;
}

@media screen and (max-width:900px) {
    #bio {
        flex-direction: column;
        width: 90vw;
        margin-top: 0px;
        font-size: medium;
    }

    .hello {
        font-size: 55px;
        margin-left: 0vw;
        margin-bottom: 20px;
    }

    .right {
        padding-left: 0vw;
    }
}

@media screen and (max-width:600px) {
    #bracket {
        width: 265px;
        margin-top: 80px;
    }
    #bracket_text {
        width: 295px;
    }
    .hello {
        margin-top: 10px;
    }

}