body {
    background-color: #191e2d;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
}

.logo {
    display: block;
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.conteiners {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.conteiners-item {
    background-color: #2c3e50;
    padding: 32px;
    width: 200px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.conteiners-item:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .conteiners {
        flex-direction: column;
    }
}
