:root {
    --primary-color: #2E05FF;
    --text-color: #0F0F0F;
    --background-color: #f7f7f7;
    --light-gray: #e0e0e0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

header {
    padding: 2rem 0;
}

.logo {
    width: 189px;
    height: 56px;
}

main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 2rem;
}

footer {
    padding: 2rem 0;
}

.contacts {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contacts a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contacts a:hover {
    color: var(--primary-color);
}


/* Decorative Blobs */
.blobs-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.6;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    animation: move 20s infinite alternate;
}

.blob:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    background-color: rgba(46, 5, 255, 0.5);
}

.blob:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 15%;
    animation-duration: 15s;
    animation-delay: -5s;
    background-color: rgba(255, 165, 0, 0.4);
}

.blob:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 30%;
    animation-duration: 25s;
    background-color: rgba(138, 43, 226, 0.4);
}

@keyframes move {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(100px, 50px) scale(1.2);
    }
}


@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .contacts {
        flex-direction: column;
        gap: 1rem;
    }
}
