* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-image: url('13.png');
    background-size: cover;
    background-position: center;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 150px; /* Adjust size as needed */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

main {
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.8); /* Light background for readability */
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

h2 {
    font-size: 2em;
    margin: 20px 0;
}

p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.trade-button {
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background-color: #007bff; /* Bootstrap primary color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.trade-button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #333;
}
