*{
    margin: 0px;
    padding: 0px;
}

#main{
    width: 100%;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sub-main{
    width: 30%;
    height: 900px;
    background-color: blue;
    display: flex;
    justify-content: center;
    align-items: center;
}

#user_details{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3%;
    width: 80%;
    height: 800px;
    border: 01px solid black;
    border-radius: 03%;
}

#user-image{
    height: 175px;
    padding: 01%;
    width: 175px;
    border: 01px solid white;
    border-radius: 50%;
}

#user-name{
    padding: 01%;
    height: 60px;
    width: auto;
    border: 01px solid white;
    border-radius: 05%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#user-contry{
    padding: 01%;
    height: 60px;
    width: auto;
    border: 01px solid white;
    border-radius: 05%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#user-email{
    padding: 01%;
    height: 60px;
    width: auto;
    border: 01px solid white;
    border-radius: 05%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#user-about{
    padding: 01%;
    height: 60px;
    width: auto;
    border: 01px solid white;
    border-radius: 05%;
    display: flex;
    justify-content: center;
    align-items: center;
}


#side-main{
    width: 70%;
    height: 900px;
    background-color: rgb(255, 115, 0);
}

#menu{
    width: 99.8%;
    height: 100px;
    border: 01px solid white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    a{
        text-decoration: none;
        color: white;
        font-size: 25px;
    }
}

#sub-menu{
    width: 99.8%;
    height: 60px;
    border: 01px solid white;
    border-radius: 10px;
    display: flex;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    p{
        cursor: pointer;
        text-decoration: none;
        color: white;
        font-size: 20px;
    }
}