@font-face {
    font-family: 'Lalezar';
    src: url(../fonts/Lalezar-Regular.otf);
}
*{
    text-decoration: none;
}
.ad {
    position: relative;
    width: 95%;
    padding: 20px;
    margin-left: 2.5%;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.add-container {
    display: flex;
    width: 20%;
    min-width: 200px;
    flex-direction: column;
    align-items: center;
    background-color: gainsboro;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin: 10px 10px;
    flex-shrink: 0;
}
.add-container img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 1/1;
    object-fit: cover;
}
body.dark-mode {
    background-color: #222 !important;
    color: #fff !important;
}
body.dark-mode .ad {
    background-color: #222 !important;
    color: #fff !important;
}