body{
    background-color: #0c0036;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

h1{
    font-family: monospace;
    color: white;
    font-size: 30pt;
    text-align: center;
}

button{
    border-width: 20px;
    border-radius: 20px;
    padding: 30px;
    background-color: #0059a8;
    font-size: 40px;
    border-color: #002d54;
    color: aqua;
    font-weight: bold;
    margin: 30px;
}

button:hover{
    background-color: #0069c4;
}

.button-container{
    font-size: 400%;
    color: #98cfff;
    font-family: monospace;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -100px;
}

@media (max-width: 800px) {
    button{
        border-width: 10px;
        border-radius: 8px;
        padding: 15px;
        background-color: #0059a8;
        font-size: 20px;
        margin: 15px;
    }
}