html,
body {
    height: 100%;
}

* {
    box-sizing: border-box;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Rubik", sans-serif;
    background-image: url("/header-bg-purple.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
    min-width: 320px;
    padding: 30px 10px;
}

.inner {
    background-color: rgba(44, 44, 43, 0.9);
    color: #fff;
    font-size: 16px;
    width: 90%;
    max-width: 800px;
    padding: 15px 30px;
    border-radius: 10px;
}

.inner__logo {
    text-align: center;
    margin-bottom: 12px;
}

.inner__logo img {
    height: 100px;
    width: auto;
}

.inner__text_title {
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    padding-bottom: 10px;
}

.inner__text_paragraph {
    text-wrap-style: balance;
    font-size: 18px;
    padding-bottom: 10px;
}

.inner__text_paragraph ul {
    padding-left: 18px;
    margin: 12px 0;
}

.inner__buttons {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.inner__button {
    text-decoration: none;
    border-radius: 25px;
    border: none;
    background-image: linear-gradient(180deg, #66508f, #aa90db);
    padding: 15px 40px;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    background-color: #a78eda;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: box-shadow .3s;
}

.inner__button:hover {
    box-shadow: 0 0 10px rgba(167, 142, 218, .6);
}

.inner__contacts {
    margin-top: 20px;
    text-align: center;
}

.inner__contact svg {
    width: 40px;
    height: auto;
}

.inner__contact svg path {
    transition: fill 0.3s;
    fill: #fff;
}

.inner__contact:hover svg path {
    fill: #aa90db;
}

@media (max-width: 480px) {
    .inner {
        padding: 15px;
    }
}