:root { /*Overwrite bootsstrap default values*/
    --bs-heading-color: #323232; /* Your custom heading color */
    --bs-body-color: #323232; /* Your custom Body color */
}

body { 
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F0EAD6; /* background color */
}

.custom-button {
    background-color: rgb(0 168 45);
    color: rgb(249 246 242);
    font-weight: bold;
    font-size: 21px;
    border-radius: 10px;
    cursor: pointer;
}

.mb-50px{
    margin-bottom: 50px;
}
.mb-100px{
    margin-bottom: 100px;
}
.mb-200px{
    margin-bottom: 200px;
}
.mb-400px{
    margin-bottom: 400px;
}
.padding-top{
    padding-top: 56px;
}


.head_content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #2b2928; /* Set background color for navbar */
    padding: 10px 0; /* Add padding to the navbar */
    z-index: 1000; /* Set a high z-index to ensure the navbar is on top */
}

.page_description {
    display: flex;
    align-items: center;
    padding-left: 25px;
}


a {
    text-decoration: none; /* Remove underlines from links */
    transition: color 0.3s; /* Add a smooth color transition effect */
    cursor: pointer; /* Set cursor to a pointing finger */
}



h1 h2 h3 h4 h5{
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.05em;
}

h1{
    margin-top: 48px;
    margin-bottom: 48px;
}


p{
    font-weight: 400;
    line-height: 1.6;
}

h1 {
    font-size: clamp(2rem, 1.8rem + 1.2vw, 3rem); /* 32px - 48px */
}

h2 {
    font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2.5rem); /* 24px - 40px */
}

h3 {
    font-size: clamp(1.25rem, 1.2rem + 0.5vw, 2rem); /* 20px - 32px */
}

p, button {
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem); /* 16px - 20px */
}



ul li{font-size: 20px;}
ol li{font-size: 20px;}

.highlight-box {
    transform: translateY(4px); /* Slight lift */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    background: #ebe4d0;
    padding: 16px;
    border-left: 4px solid #b3ad9f;
    margin: 24px 0;
    border-radius: 8px;
}

.highlight-box h2{
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.highlight-box h3{
    font-size: 1.3rem;
    margin: 20px 0 20px 0;
    font-weight: bold;
}

.highlight-box p {
    margin: 0;
}
.highlight-box span {
    margin: 0;
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem); /* 16px - 20px */
    font-style:italic;
}

/*
h1 {
    font-weight: bold;
    color:#CCCCCC;
    padding-bottom:32px;
    border-radius: 5px;
}
h2 {
    font-weight: bold;
    color:#CCCCCC;
    padding-bottom:23px;
    border-radius: 5px;
}
h3 {
    color: #CCCCCC;
}
p {
    color: #CCCCCC;
}


.text_bold {
    font-weight: bold;
    color:#CCCCCC;
    padding-bottom:20px;
    border-radius: 5px;
}
*/

.icon {
    font-size: 24px;
    vertical-align: middle;
}
.bitcoin-icon {
    color: #F7931A; /* Bitcoin orange color */
}
.lightning-icon {
    color: #FFD700; /* Lightning yellow color */
}
.button {
    padding: 10px 20px;
    background-color: #009688;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 10px;
}