body, html {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.wrapper {
    display: flex;
    justify-content: center;
    flex: 1;
    align-items: center;
    background-color: #000000;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.logotype {
    width: 100%;
}

.social {
    margin: 30px 0;
}

.social__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.social__item {
    flex: 1;
    max-width: 50px;
}

.contact {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

.contact__info {
    margin-bottom: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #dddddd;
}

.contact__info:last-child {
    margin-bottom: 0;
}

.signature {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}