.buttons {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}
.button {
    flex: 1;
    max-width: 150px;
    padding: 10px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #4A90E2;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 10px;
}
.button.go-top::after {
    content: " ↑";
    font-size: 16px;
    margin-left: 3px;
}
.button:hover {
    background-color: #357ABD;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }

    .button {
        width: 90%;
        max-width: 200px;
        margin-bottom: 10px;
    }

    
}