*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    background-color: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.container .left, .container .right{
    width: 500px;
    background-color: #000;
}
.left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.left .title-name{
    font-size: 50px;
    text-align: center;
    color: white;
    margin-bottom: 10px;
    /* color: #fff; */
}
a{
    text-decoration: none;
}
.social-links {
    width: 500px;
    height: 40px;
    background-color: white;
    display: flex;
    justify-content: space-evenly;

}

.right .circle{
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.circle img{
    border-radius: 50%;
    display: block;
    border: 1px solid #000;
    height: 100%;
    width: 100%;
}