/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    margin: 0;
    text-transform: lowercase; /* Ensures snaxena is always lowercase */
}

.tagline {
    font-size: 1.2rem;
    color: #2196f3; /* Blue accent color */
    margin: 10px 0 20px; /* Reduced spacing between the name and tagline */
}

/* Child Companies */
.child-companies {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.child {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
}

.child h2 {
    font-size: 1.5rem;
    margin: 0;
}

.child-tagline {
    font-size: 1rem;
    color: #2196f3; /* Blue accent color */
    margin: 10px 0;
}

.btn, .btn-store {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #2196f3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover, .btn-store:hover {
    background-color: #1976d2;
}

.social {
    font-size: 1.2rem;
    margin-top: 10px;
}

.icon {
    color: #2196f3;
    margin-right: 10px;
    text-decoration: none;
    font-size: 1.5rem; /* Size of the Instagram icon */
}

.icon:hover {
    color: #1976d2;
}

/* Responsive Design */
@media (max-width: 600px) {
    .child-companies {
        flex-direction: column;
        align-items: center;
    }
}
