@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #F0B90B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h2, h3 {
    color: #F0B90B;
}

.bg-yellow-400 {
    background-color: #F0B90B;
}

.text-yellow-400 {
    color: #F0B90B;
}

.hover\:bg-gray-800:hover {
    background-color: #2d3748;
}

.hover\:text-yellow-200:hover {
    color: #fefcbf;
}

#bitcoin-price {
    transition: background-color 0.3s ease;
}

#bitcoin-price:hover {
    background-color: #2d3748;
}

#bitcoin-price-value {
    transition: color 0.3s ease;
}

#bitcoin-price-value:hover {
    color: #fefcbf;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-item {
    background-color: #1a202c;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.news-item p {
    font-size: 0.875rem;
    color: #cbd5e0;
}

.news-item a {
    color: #F0B90B;
    text-decoration: none;
    font-weight: bold;
}

.news-item a:hover {
    text-decoration: underline;
}

