:root {
    --blue: #00A7E1;
    --purple: #9B4F96;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.logo-container {
    text-align: center;
    padding: 2rem;
}

.shapes {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.shape {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 15px solid;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.shape:hover {
    transform: scale(1.1);
}

.shape-1 {
    border-color: var(--blue);
    top: 0;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.shape-2 {
    border-color: var(--blue);
    bottom: 0;
    left: 0;
    animation: float 3s ease-in-out infinite 0.5s;
}

.shape-3 {
    border-color: var(--purple);
    top: 0;
    right: 0;
    animation: float 3s ease-in-out infinite 1s;
}

.logo-text {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1.5s;
    font-family: Arial, sans-serif;
}



.tagline {
    color: white;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    background-color: var(--purple);
    padding: 5px 20px;
    border-radius: 20px;
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

