body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1c1a29;
    color: #d2d7ee;
    font-family: Arial, sans-serif;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: zoom 2s ease-in-out;
}

.logo-container img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.logo-circle {
    z-index: 1;
    animation: rotate 10s linear infinite;
    animation-delay: 2s;
}

.logo-text {
    z-index: 2;
}

h1 {
    opacity: 0;
    animation: fadeIn 1s ease-in-out 2s forwards;
}

@keyframes zoom {
    0% {
        transform: scale(0.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.code-block {
    margin-top: 20px;
    background-color: #2a273f;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #3e3b56;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 1.1em;
    color: #ecbaab;
    
    opacity: 0;
    animation: fadeIn 1s ease-in-out 2.5s forwards;
}

.btn-repo {
    margin-top: 25px;
    padding: 12px 25px;
    background-color: #ecbaab;
    color: #1c1a29;          
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;    
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
    opacity: 0;
    animation: fadeIn 1s ease-in-out 3s forwards;
}

.btn-repo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(236, 186, 171, 0.4);
}

.btn-repo:active {
    transform: translateY(-1px);
}
