html {
    box-sizing: border-box;
}
  
*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100svh;
}

.main__image {
    max-width: 250px;
    width: 100%;
    margin-bottom: 16px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

.socials {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-right: 84px;
}

.socials__link {
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 8px;
}

.socials__image {
    width: 100%;
}