@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    user-select: none;
}
body {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    background: transparent;
    background-color: black;
    }
    #buttons {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    font-family: 'Noto Sans Hebrew', serif;
    gap: 25px;
    padding-bottom: 50px;
}

.button-column:last-child {
    margin-right: 0;
}

#buttons button {
    display: block;
    font-size: 12px;
    color: white;
    background: linear-gradient(145deg, #ffcd28, #d98e00); 
    border: none;
    border-radius: 7px;
    cursor: pointer;
    padding: 5px 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
}

#buttons button:hover {
    font-weight: 400;
    font-size: 16px;
    padding: 10px 10px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    align-self: center;
    border: 0 !important;
    background: #000000;
    color: #fff !important;
    font-weight: 300 !important;
    transition: all 0.4s ease;
}


#buttons .title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    font-family: 'Noto Sans Hebrew', serif;
}
