/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body Styles */
body {
    background-color: #2b2b36;
    color: #ffffff;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    color: #a485b6;
}

header p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Container Styles */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Stock Card Styles */
.stock-card {
    background-color: #393952;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    margin: 20px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stock-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stock-card h2 {
    font-size: 1.8rem;
    color: #b6a4c2;
    margin-bottom: 15px;
    text-align: center;
}

.stock-details p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.stock-details strong {
    color: #a485b6;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 50px;
}

footer p {
    font-size: 0.9rem;
    color: #e0e0e0;
}