body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    line-height: 1.5;
    background-color: #0a0c12;     
    color: #eef4ff;                
}

.div-title {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);   
    border-radius: 20px;
    height: 100px;
    background: rgb(255, 255, 255);         
    backdrop-filter: blur(2px);                 
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.div-homePageContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 30px;
    background: rgba(29, 18, 40, 0.457);
    backdrop-filter: blur(2px);
}

.div-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 30px;
    background: rgb(255, 255, 255);
    color: #0a0c12;
    backdrop-filter: blur(2px);
}

.div-content2 {
    max-width: 1200px;
     display: grid;
    justify-items: center;
    gap: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 30px;
    background: rgba(18, 25, 40, 0.5);
    /* backdrop-filter: blur(2px); */
}

.circle {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 200px;
    height: 120px;
    gap: 5rem;
    border-radius: 20%;
    color: #00ffff;                      
    background: linear-gradient(135deg, #1e2a3a, #0f172a); 
    border: 2px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
    border-color: #00ffff;
}

.circle-container {
    display: grid;
    width: 180px;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

a {
    text-decoration: none;
}