* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    font-size: 3rem;
    background-color: white;
    color: black;
}

.artemtrubnikov {
    display: flex;
    height: 3em;
    width: 3em;
    border-radius: 50%;
}

.name {
    font-size: 0.5em;
    margin: 1em;
    color: grey;
}

.social {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 0.5em;
}

.social a {
    margin: 0.2em;
    border-radius: 50%;
    background-color: black;
}

.social img {
    display: flex;
    height: 1em;
    width: 1em;
    background-color: black;
    margin: 0.5em;
}