@import url("https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css");
@import url("https://use.fontawesome.com/releases/v6.2.1/css/all.css"); 
@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap");

body {
    font-family: Play, FontAwesome, sans-serif;
    font-size: x-large;
    font-weight: 700;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

/* main section styles */
.main {
    max-width: 800;
    margin: 0 auto;
}

.main__logo {
    background-image: url(../images/kolesnikov-top-logo.gif);
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: center;
    height: 128px;
    width: 320px;
    margin-left:auto;
    margin-right:auto;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.main__list {
    display: block;
    list-style-type: none;
    padding: 15px;
}

.main__item {
    padding: 15px;
}

.main__link {
    background-color: rgb(57, 122, 189);
    border-radius: 20px;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

