* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* begins */

.full-width-nav {
    width: 100%;
    background-color: #f8f8f8; 
    position: relative; /* Ensures absolute positioning is relative to this container */
}

.navigation {
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 10px 20px;
}

.nav-left, .nav-right {
    position: absolute;
}

.nav-left {
    left: 20px; 
}

.nav-center {
    font-size: 24px; 
    font-weight: bold;
    position: relative; /* Ensures it's centered regardless of other elements */
}

.nav-right {
    right: 20px; 
    display: flex; /* Aligns the About and Contact side by side */
}

.nav-right a {
    padding-left: 10px; /* Adds spacing between About and Contact */
}

.navigation a:hover {
    background-color: #ddd;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* ends */


body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    background-color: #210c34;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    color: #000;
}

header p {
    color: #666;
}

.converter h2 {
    color: #000;
    margin-bottom: 10px;
}

.converter p {
    color: #666;
    margin-bottom: 20px;
}

.convert-bitcoin {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.convert-bitcoin input[type="number"] {
    flex-grow: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
}

.convert-bitcoin input[type="radio"] {
    display: none;
}

.convert-bitcoin input[type="radio"] + label {
    padding: 10px 20px;
    background-color: #e8e8e8;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.convert-bitcoin input[type="radio"]:checked + label {
    background-color: #53b7ea;
}

.convert-bitcoin button {
    padding: 10px;
    border-radius: 5px;
    border-color: #53b7ea;
    background-color: white;
    color: #53b7ea;
    cursor: pointer;
    font-size: 20px;
}

.convert-bitcoin button:hover {
    background-color: #53b7ea;
    color: white;
    border-color: white;
}

#moneyAmount {
    font-size: 30px;
}

footer {
    text-align: center;
    margin-top: 20px;
}