/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 10;
    padding: 10;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for better readability */
    border-radius: 10px;
}

header {
    text-align: center;
}

h1, h2 {
    color: #FFD700; /* Gold color for headings */
}

.content {
    margin-bottom: 20px;
}

.links {
    display: flex;
    justify-content: space-between;
}

.btn {
    background-color: #007BFF;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0f56b3; /* Darker blue for hover effect */
}

.crypto-price {
    text-align: center;
    margin-top: 20px;
}
