@font-face {
  font-family: 'Lalezar';
  src: url('Lalezar-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Vazir';
  src: url('Vazirmatn-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#Base {
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;        /* برای اینکه آیتم‌ها برن خط بعد */
    gap: 35px;              /* فاصله بین آیتم‌ها */
    padding: 10px;
}

.music-box {
    position: relative;      /* تا متن بتواند روی تصویر قرار بگیرد */
    width: 100px;            /* برای اینکه شکل‌ها کنار هم بمونن */
}

.music-box img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border-style: solid;
    border-color: #F0932B;
    border-width: 10px;
    box-shadow: 0px 0px 100px 10px #F0932B;
}

.music-title {
    font-family: 'Vazir';
    position: absolute;        /* قرارگیری روی عکس */
    bottom: 0;                 /* چسبیده به پایین عکس */
    width: 100%;
    background-color: rgba(240, 147, 43, 0.5);
    color: rgb(0, 0, 0);
    text-align: center;
    border-radius: 15px 15px 15px 15px;
    right: 10px;
    box-shadow: 0px 0px 5px #F0932B;
    top: 40px;
}
