﻿.container {
    font-family: 'Montserrat', Arial, sans-serif;
    margin-top: 1%;
    display: flex;
    max-width: 1130px;
}
.block {
    margin-top: 37px;
    height: 50px;
    line-height: 50px;
}
.title {
    color: #242424;
    font-size: 48px;    
    font-weight: 700;
    text-transform: uppercase;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.subtitle {
    color: #242424;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.button {
    display: inline-block;
    padding: 12px 24px;
    background-image: linear-gradient(121deg, rgba(38, 121, 255, 1) 0%, rgba(128, 0, 255, 1) 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 100px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
    .button:hover {
        transform: scale(0.95);
        background-color: #0056b3;
        color: white;
    }
    .button:active {
        transform: scale(0.9);
    }
