* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 400px;
}

.container {
    max-width: 500px;
    max-height: 200px;
    background-color: #55679C;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.img img {
    width: 40%;
    height: 50%;
    border-radius: 50%;
}

a {
    text-decoration: none;
    color: #fff;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social {
    background-color: transparent;
    padding: 10px;
    border-radius: 5px;
    transition: 300ms all;
}

.social:hover {
    background-color: #55679C;
}