.main_button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_button a:hover {
    transform: scale(1.04);
    background: #2d333d;
    border-color: #555e6e;
}

.main_button a:active {
    transform: scale(0.97);
}

@media screen and (orientation: landscape) {
    .main_button {
        margin: 20px 0;
    }

    .main_button a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20vw;
        padding: 12px 24px;
        background: #222831;
        border: 0.5px solid #393e46;
        border-radius: 10px;
        font-size: clamp(11px, 2vw, 28px);
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #eeeeee;
        text-decoration: none;
        transition: background 0.25s, border-color 0.25s, transform 0.25s;
        box-sizing: border-box;
        text-align: center;
    }

    #main_text {
        text-align: center;
        font-size: clamp(16px, 2.5vw, 40px);
        font-weight: 800;
        text-shadow: black 0px 5px 5px;
    }

    #main_db_qty {
        text-align: center;
        font-size: clamp(9px, 1vw, 16px);
    }
}

@media screen and (orientation: portrait) {
    .main_button {
        margin: 20px 0;
    }

    .main_button a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60vw;
        padding: 10px 20px;
        background: #222831;
        border: 0.5px solid #393e46;
        border-radius: 999px;
        font-size: clamp(10px, 1.5vh, 20px);
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #eeeeee;
        text-decoration: none;
        transition: background 0.25s, border-color 0.25s, transform 0.25s;
        box-sizing: border-box;
        text-align: center;
    }

    #main_text {
        text-align: center;
        font-size: clamp(16px, 5vw, 36px);
        font-weight: 800;
        text-shadow: black 0px 5px 5px;
    }

    #main_db_qty {
        text-align: center;
        font-size: clamp(8px, 2vw, 14px);
    }
}