body {
    color: #151515;
    background: #F5F5F5;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
}

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

a, button {
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
}

button {
    padding: 0;
    margin: 0;
    border: none;
}

input,
textarea {
    outline: none;
    width: 100%;
}

ul,
menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    padding: 0;
    margin: 0;
}

img {
    vertical-align: bottom;
}

svg {
    display: block;
}

.main {
    padding: 30px 0;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: 3px 6px 10px rgb(204 204 204);
    padding: 15px;
    color: #151515;
}

.link:not(:last-child) {
    margin-bottom: 15px;
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
}

.link-icon-no-border {
    border-radius: initial;
    overflow: initial;
}

.link-icon svg {
    width: 51px;
    height: 51px;
}

.link__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.link__description {
    font-size: 14px;
    color: #A5A5A5;
    line-height: 1.2;
}

.title {
    text-align: center;
    margin: 30px 0 15px;
}

.main-description {
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
}