.container{
    margin: 15% auto;
    width: 400px;
    height: 200px;
    border-radius: 20px;
    box-shadow: 5px 5px 5px gray;
    display: flex;
    flex-direction: row;
}

#name {
    flex: 2;
    height: 100%;
    background-color: rgb(24,105,172);
    border-radius: 20px 0 0 20px;
    border-right: 1px solid rgb(175, 175, 175);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

#myphoto  {
    margin-top: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.ybnf {
    color:white;
    font-family: sans-serif;
}

#info {
    flex: 3;
    height: 100%;
    background-color: rgb(9,50,106);
    border-radius: 0 20px 20px 0;
}

.ico {
    margin-top: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.img-ico {
    width: 45px;
    height: 45px;
}

.img-ico:hover {
    opacity: 0.5;
}

p {
    color:white;
    font-family: sans-serif;
    padding: 10px 10px 30px 10px;
}

.beian {
    width: 320px;
    height: 25px;
    margin: 0 auto;
}

