@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
article{
    background: url('./billie.jpg');
    background-size: cover;
    color: #fff;
}
h1{
    font-weight: 700;
}
.dark{
    display: grid;
    place-items: center;
    height: 300px;
    background: rgba(0, 0, 0, 0.8);
}
::selection{
    background: #121212;
    color: #fff;
}
.wallets{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1280px;
    width: 90%;
    margin: 20px auto;
    gap: 30px;
}
.one{
    max-width: 500px;
    width: 100%;
    /* background: #f0f0f0; */
    padding: 10px 0;
    display: grid;
}
.copy{
    display: grid;
}
h2{
    font-weight: 700;
}
#btc, #usdt{
    margin-top: 12px;
    padding: 14px;
    font-size: 1.1rem;
    max-width: 420px;
    border: 1px solid #121212;
    outline: 1px solid #121212;
    outline-offset: 1.5px;
}
.action{
    margin-top: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    background: #121212;
    color: #fff;
    border: 1px solid #121212;
    width: fit-content;
}
.wal{
    margin-top: 20px;
    height: 350px;
    max-width: 300px;
    width: 100%;
    border: 1px solid #121212;
}
.nxt{
    color: #fff;
}
@media (max-width: 768px) {
    .wallets{
        grid-template-columns: auto;
    }
}