html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.square {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid;
    border-width: 1px;
    padding: 40px;
    border-radius: 15px;
}

.assets {
    font-size: 60px;
}

.header-text {
    font-size: 60px;
    font-weight: bold;
}

.logo-container {
    width: 40%; /* Adjust this width to align all inputs */
    text-align: right;
}

.image-sizing {
    height: 20px;
    width: auto;
}

.bg-info {
    background-color: orange !important;
}

.btc-value-label {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    width: 100%;
    padding-right: 5px;
}

.input-group{
    border: 0;
}
.input-group-text{
    border:0;
}

.input-size{
    width: 200px;
}

.fake-input {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    display: flex;
    align-items: center;
    height: 37px;
    border-radius: 0.25rem;
}

@media (max-width: 768px) {
    .header-text {
        font-size: 30px;
        font-weight: bold;
    }

    .assets {
        font-size: 30px;
    }

    .square {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: solid;
        border-width: 1px;
        padding: 20px;
        border-radius: 15px;
    }
}