/* Global Settings */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #191d2b;
    color: #ffffff;
    animation: fadeIn 2s ease-out;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Container Styles */
.container {
    text-align: center;
    padding: 20px;
    border: 1px solid #3c4a61;
    border-radius: 8px;
    background-color: #282c36;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    animation: scaleUp 0.5s ease-out forwards;
}

/* Scale-Up Animation */
@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Project Title Styles */
.project-title {
    font-size: 2em;
    margin-bottom: 15px;
    animation: slideInFromTop 1s ease-out;
}

/* Slide-In Animation */
@keyframes slideInFromTop {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Project Description and Details Styles */
.project-description, .project-details {
    font-size: 1.2em;
    margin-bottom: 15px;
    text-align: left; /* Align text to the left for better readability */
    margin: 0 auto; /* Center text block */
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

/* Bullet Points */
.project-details ul {
    list-style-type: disc; /* Bulleted list */
    margin-left: 20px; /* Indent bullets */
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    text-decoration: none;
    background-color: #191d2b;
    color: #ffffff;
    border: 1px solid #ffffff;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    animation: buttonSlideIn 1s ease-out;
}

/* Button Slide-In Animation */
@keyframes buttonSlideIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Button Hover Styles */
.btn:hover {
    background-color: #2c2f3d;
    transform: scale(1.05);
}
