/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

h1 {
    color: #2acbd7;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.highlight {
    font-weight: bold;
}

.connect-wallet {
    background-color: #2acbd7;
    color: #0f2027;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.connect-wallet:hover {
    background-color: #1a98b2;
}
