#bottom-box{
    width: 100%;
    max-width: 900px;
    margin: 1em auto;
}
#bottom-page{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.bottom-page{
    display: flex;
    gap: 1em;
    justify-content: flex-end;
    padding: 1em;
}
.bottom-div{
    background-color: black;
    border: none;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 100px;
    border-radius: 5px;
    cursor: pointer;
}

.label {
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 8px 5px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .bottom-div{
        background-color: black;
        border: none;
        color: white;
        padding: 0.5em 1em;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        width: auto;
        border-radius: 5px;
        cursor: pointer;
    }
}