html, body{
    margin: 25px;
    padding: 0;
}


body{
    background-color: rgb(38, 38, 38);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 100vh;
    overflow: hidden;
    font-family: 'Comic Sans MS', Arial, sans-serif;
}



#moneybutton, #fightbutton{
            width: 300px;
            height: 150px;
            font-size: 35px;
            color: rgb(0, 0, 0);
            background-color: rgb(57, 127, 255);
            font-family: 'Comic Sans MS', Arial, sans-serif;
            border-radius: 25px;
}



#moneybutton:hover, #fightbutton:hover{
    filter: brightness(75%);
}



p{
    font-size: 35px;
    color: white;
    margin: 0;
}



#fightbutton{
    position: fixed;
    bottom: 10%;
}



#moneybutton{
    position: fixed;
    top: 10%;
}


a{
    color: rgb(59, 145, 255);
    display: inline-block;
    margin-top: 150px;
    font-size: 50px;
}



