html,
body {
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    color: #333;
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
    color: rgb(0, 100, 200);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: rgb(0, 80, 160);
}

label {
    display: block;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    -webkit-padding: 0.4em 0;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

button {
    color: #333;
    background-color: #f4f4f4;
    outline: none;
}

button:disabled {
    color: #999;
}

button:not(:disabled):active {
    background-color: #ddd;
}

button:focus {
    border-color: #666;
}

.header_container {
    background-color: #111173 !important;
    color: white;
}

.button_search {
    width: 100%;
}

.button_scammer {
    width: 96%;
}

.card-body {
   padding: 0 !important;
}

.title-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.title-text {
    color: white;
    text-transform: uppercase;
    font-size: 8vh;
    font-weight: bold;
}

.logo_img {
    width: 15vh;
}
.navbar_bg {
    background-color: #111173 !important
}

.card_padding {
    padding: 15px !important;
}

.btn_blue {
    background-color: #007bff !important;
    margin: 0 15px 15px 15px;
}

.card_donate {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.donate_img {
    width: 110px;
}

.red {
    color: red;
}

.green {
    color: green;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    height: 17vh;
}

.flex-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

/* Viewports between 320px and 480px wide */
@media only screen and (min-device-width: 280px) and (max-device-width: 600px) {
    .title-text {
        font-size: 4vh;
    }
}

@media only screen and (min-device-width: 601px) and (max-device-width: 900px) {
    .title-text {
        font-size: 4vh;
    }
}


