* {
    padding: 0;
    margin: 0;
}

body {
    background-image: url(/Images/Background.jpg);
    width: 100vw;
    height: 100vh;
    font-size: 1.25em;
}

:root {
    --backgroundColor: rgba(24, 40, 83, 0.719);
    --textColor: rgb(221, 221, 221);
    --textColor2: rgb(49, 113, 197);
}

.container {
    font-family: "Fira Sans", serif;
    text-shadow: 2px 2px 2px rgba(85, 85, 85, 0.66);

    background-color: var(--backgroundColor);
    color: var(--textColor);
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box {
    width: 50%;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #222222d3 0%, #0f0f0fc0 80%);
    overflow: auto;
}

.row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0px;
    width:50%;
}

.heading {
    margin: 8px 0px;
    border-bottom: 2px solid rgb(34, 71, 194);
    text-shadow: none;
    color: var(--textColor2);
}

.buy-coins-box {
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#paypal {
}

input{
    width:25%;
    background: linear-gradient(135deg, #222222d3 0%, #494949c0 80%);
    color: var(--textColor);
    border:none;
    font-weight: bold;
    border-radius: 10px;
}