body {
    font-family: "Source Code Pro", monospace;
    text-align: center;
    background: #141414;
    margin: 0;
    padding: 20px;
    color: white;
}

.vector {
    margin-top: -520px; /* Укажи нужное расстояние */
    position: absolute;
    top: -50px; /* Регулируй отступ сверху */
    left: 50%;
    transform: translate(-50%, 0); /* Центрируем */
    width: 285px; /* Задай нужный размер */
    height: auto;
}

.container {
    position: relative;
    display: inline-block; /* Чтобы контейнер подстроился под размер текста */
}



h1 {
    padding-top: 300px;
    font-weight: bold;
    font-size: 75px;
    background: linear-gradient(to right, #AA1111, #550808, #AA1111);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowingText 3s linear infinite;
    text-shadow: 0 0 5px #AA1111, 0 0 10px #550808, 0 0 20px #AA1111;
}

h2 {
    position: relative;
    top: -35px; /* Перемещает вниз */
    color: #cccccc;
    font-family: "Inter", sans-serif;
    font-weight: 400; /* Regular */
}

h3 {
    position: relative;
    top: -55px; /* Перемещает вниз */
    color: #cccccc;
    font-family: "Inter", sans-serif;
    font-weight: 400; /* Regular */
    font-size: 25px;
}

@keyframes glowingText {
    0% {
        background-position: -100% 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}


.container1 {
    position: relative;
    width: 100%;
    height: 0vh; /* Высота экрана */
    display: flex;
    justify-content: center; /* Центрируем по горизонтали */
    align-items: center; /* Центрируем по вертикали */
}

button {
    display: flex;
    align-items: center;
    gap: 15px; /* Отступ между SVG и текстом */
    padding: 10px 20px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
    background-color: #660000; /* Темно-красный */
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 0; /* Меняй это значение, чтобы поднять или опустить кнопку */
}

button:hover {
    background-color: #8B0000; /* Светлее при наведении */
}

button img {
    width: 30px;
    height: 30px;
}