h1
{
    padding-top: 100px;
}

h1, h2
{
    margin: 0;
}

#counter, h1
{
    font-size: 50px;
    text-align: center;
    color: red;
}

body
{
    display: flex;
    gap: 50px;
    flex-direction: column;
    justify-content: center;
    background-color: black;
}

#buttonWrap
{
    display: flex;
    gap: 10px;
    justify-content: center;
}

#dButton, #rButton, #iButton
{
    width: 100px;
    height: 50px;
    font-size: 15px;
    background-color: blueviolet;
    color: aqua;
}

@media (min-width: 1024px)
{
    #counter, h1
    {
        font-size: 100px;
    }

    #dButton, #rButton, #iButton
    {
        width: 200px;
        height: 50px;
        font-size: 25px;
    }
}