/* General Reset */
body, h1, h2, p, a {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    color: #e0e0e0; /* Light gray for text */
}

body {
    background: url('assets/bull.jpeg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

/* Header Styling */
header {
    text-align: center;
    padding: 20px;
    background: rgba(32, 32, 32, 0.9); /* Dark gray card background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    width: 90%;
    max-width: 800px;
    margin-top: 20px;
}

header h1 {
    font-size: 2.5rem;
    color: #f7931a; /* Bitcoin orange */
}

header p {
    font-size: 1.2rem;
    color: #e0e0e0; /* Light gray */
}

/* Main Content Styling */
main {
    width: 90%;
    max-width: 800px;
    background: rgba(32, 32, 32, 0.9); /* Dark gray card background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

main section {
    margin-bottom: 20px;
}

.about h2, .contact h2 {
    font-size: 1.8rem;
    color: #f7931a; /* Bitcoin orange for headings */
    margin-bottom: 10px;
}

.about p, .contact p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray for text */
}

/* Link Styling */
.contact a {
    color: #f7931a; /* Bitcoin orange for links */
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #bf6a12; /* Darker orange on hover */
}

/* Footer Styling */
footer p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #000000;
    padding:5px;
    background: #f7931a;
}


/* Token Section */
.token h2 {
    font-size: 1.8rem;
    color: #f7931a; /* Bitcoin orange */
    margin-bottom: 10px;
}

.token ul {
    list-style: none;
    padding: 0;
}

.token li {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.token li strong {
    color: #f7931a; /* Bitcoin orange for highlights */
}


.band h2 {
    font-size: 1.8rem;
    color: #f7931a; /* Bitcoin orange */
    margin-bottom: 10px;
}
.band p {
    margin-bottom:1em;
}
.lyrics {
    height:300px;
    width:80%;
    overflow-y:scroll;
    overflow-x:hidden;
    margin-left:auto;
    margin-right:auto;
}
.yt-embed {
    width:560px;
    height:315px;
    margin-left:auto;
    margin-right:auto;
    padding:10px;
}

.coin {
    width: 80px; /* Adjust size as needed */
    height: 80px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image scales proportionally */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Adds a 3D coin effect */
    border: 2px solid #f7931a; /* Bitcoin orange border */
    background: url('assets/icon.jpeg') 
}