body{
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #373839;
}

/* A container to be used as a flexbox */

#container{
    height: 100vh;

    background-color: #373839;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#info_box{
    height: 200px;
    width: 400px;

}

#names_aspirations_self-pic{
    height: 70px;
    width: 400px;

}

#names{
    height: 30px;
    width: 275px;

    padding-top: 10px;

    float: left;

    text-align: center;
    font-size: 20px;
    font-family: "Outfit", figtree;
    font-weight: 500;
    color: rgb(241, 236, 236);
}

#aspirations{
    height: 30px;
    width: 275px;

    margin-top: 0px;

    float: left;

    text-align: center;
    font-size: 16px;
    font-family: "Outfit", figtree;
    font-weight: 500;
    color: rgb(199, 190, 190);

    align-items: center;
}

#self-pic{
    margin-top: -35px;

    overflow: hidden;

    width: 90px;
    height: 90px;

    border-radius: 35px;

    float: right;
}

#location{
    height: 30px;
    width: 275px;
    margin: 0px;
    padding-top: 10px;

    display: flex;
}

#location_pic_container{
    padding-top: -20px;
    padding-left: 1px;
    height: 20px;
    width: 20px;

    display: inline-block;
}

#location_text{
    margin: 0px;
    padding: 0px;

    padding-right: 50px;

    width: 80px;

    text-align: center;
    font-size: 16px;
    font-family: "Outfit", figtree;
    font-weight: 500;
    color: rgb(199, 190, 190);

    display: inline-block;
}

#school{
    height: 30px;
    width: 275px;
    margin: 0px;

    display: flex;

}

#school_pic_container{
    padding-top: 0px;
    height: 20px;
    width: 20px;

    display: inline-block;
}

#school_text{
    margin: 0px;
    padding: 0px;

    margin-left: -27px;

    width: 250px;

    text-align: center;
    font-size: 16px;
    font-family: "Outfit", figtree;
    font-weight: 500;
    color: rgb(199, 190, 190);

    display: inline-block;
}

#links_container{
    padding-top: 10px;

    height: 55px;
    width: 400px;

    display: flex;
    flex-direction: row;
    gap: 15px;
}

.links{
    width: 90px;
    height: 25px;

    padding-top: 5px;

    text-align: center;
    font-size: 14px;
    font-family: "Outfit", figtree;
    font-weight: 500;
    color: rgb(199, 190, 190);

    border: 1px solid;
    border-color: rgb(85, 78, 78);
    border-radius: 100px;
}

a:link, a:visited{
    text-decoration: none;
}

a:hover, a:link, a:visited, a:active{
    color: rgb(199, 190, 190);
}

