body{
    margin: 0;
    padding: 0;
    background-color: #141729;
    color: #ffffff;
}
.container{
    width: 65%;
    height: 100vh;
    margin-left: 17.5%;
    margin-right: 17.5%;
    display: flex;
    flex-direction: column;
    background-color: #282b3d;
}
.title{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00ad62;
    font-family: "VT323", monospace;
    font-size: 36px;
}
main{
    display: flex;
    flex: 1;
}
.left_column{
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex: 0 0 30%;
}
.profile_pic{
    width: 90%;
    height: auto;
    margin-left: 2.5%;
    margin-right: 7.5%;
    margin-bottom: 5%;
}
.profile_picture{
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.menu{
    width: 90%;
    margin-left: 2.5%;
    margin-right: 7.5%;
    text-align: center;
}
.menu_item{
    width: 100%;
    height: 50px;
    margin-bottom: 2.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
    color: #00ad62;
    font-family: "VT323", monospace;
    font-size: 20px;
}
.right_column{
    width: 70%;
    height: auto;
    flex: 0 0 70%;
}
.content{
    width: 100%;
}
.container h1{
    text-align: center;
}
a{
    text-decoration: none;
}
footer{
    text-align: center;

}
footer a{
    text-decoration: none;
    color: white;
}
