* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
    background-image: url(./xrp\ background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    max-width: 500px;
    padding: 40px;
    background: #222;
    border-radius: 10px;
    margin-left: 25px;
    margin-bottom: 2rem;
}


h1 {
    color: #75ff72;
    margin-top: 5px;
}

.hero{
    font-size: 30px;
    font-weight: 700;
}

p{
    font-size: 18px;
}

button {
    padding: 10px 20px;
    background: #45a049;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
    transition: all 0.2s ease-in-out;
    /* box-shadow: 0 4px #2980b9; */
    /* position: relative; */
}
#btn {
    padding: 10px 20px;
    background: #45a049;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 25px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

button:active {
    /* box-shadow: 0 2px #2980b9; */
    transform: translateY(2px);
} 


@media screen and (max-width: 500px) {
    .container {
        margin-left: 0;
    }
}