.container {
    max-width: 1280px;
    margin-inline: auto;
}

.big-resolution {
    background-color: rebeccapurple;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-items: center;
}

.primary-btn {
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 8px;
    padding: 14px 24px;
    border: 1px solid rgb(230, 30, 77);
    transition:
        box-shadow 0.2s ease 0s,
        -ms-transform 0.1s ease 0s,
        -webkit-transform 0.1s ease 0s,
        transform 0.1s ease 0s;
    background: linear-gradient(to right, rgb(230, 30, 77) 0%, rgb(227, 28, 95) 50%, rgb(215, 4, 102) 100%);
    color: #fff;
    text-decoration: none;
}

.primary-btn:hover {
    background: #fff;
    color: rgb(230, 30, 77);
}

.secondary-btn {
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 8px;
    padding: 13px 23px;
    border: 1px solid #222222;
    transition:
        box-shadow 0.2s ease 0s,
        -ms-transform 0.1s ease 0s,
        -webkit-transform 0.1s ease 0s,
        transform 0.1s ease 0s;
    background: #fff;
    color: #222222;
    text-decoration: none;
}

.secondary-btn:hover {
    border-color: #000000;
    background: #f7f7f7;
}
