.days-content{
    margin-bottom:8.5rem;
    display: flex;
    position: relative;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap:1rem;
}

.days-parteneri{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap:2rem;
    width:60%;
}

.days-info-events{
    display: flex;
    flex-direction: column;
    width: 65%;
    margin-bottom: 1rem;
    margin-top:1rem;
    height: auto;
    background-color: var(--albastru-random);
    border-radius: 40px;
    /* box-shadow: 0px 5px 7px #bd097574; */
    box-shadow: 0.4rem 0.4rem 20px rgba(0, 0, 0, 0.5);
    align-items: center;

    text-align: center;
    color: white;
    padding: 20px;
    font-size:20px;
    font-family: 'Figtree';
    margin-top:0;
}


.days-button, .days-button:visited{
    display:flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 50px;
    border-radius: 30px;
    background-color: #ef66b8;

    color: rgba(255, 255, 255, 0.874);
    font-size: 25px;
    font-family: 'Figtree';
    border-color: #8eb2e7de;
    box-shadow: 0px 2px 4px #0000007c;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.days-button:hover{
    transform: scale(1.1);
    box-shadow: 0 4px 8px #0000007c;
}

.days-locatie{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.874);
    font-family: 'Figtree';
    font-size:large;
    font-weight:700;
}

.days-logo-partener{
    background-color: black;
    width:100%;
    height:4rem;
    object-fit: fill;
}

.days-flip-card{
    width: 100%;
    height: 250px;
    background-color: transparent;
    border-radius: 29px;

    text-align: center;
    color: black;
    padding: 20px;
    font-family: 'Figtree';

    perspective: 1000px;
}

.days-flip-card a:link, .days-flip-card a:visited {
    color:black;
    text-decoration: underline;
}

.days-flip-card-inner{
   position: relative;
   width: 100%;
   height: 100%;
   text-align: center;
   transition: transform 0.8s;
   transform-style: preserve-3d;
}

.days-flip-card-buton{
    transform: rotateY(180deg);
} 

.days-flip-card-front, .days-flip-card-back{
    position:absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0 4px 8px #0000007c;
}

.days-flip-card-front{
    /* width: 280px; */
    height: 350px;
    background-color: #f0f0f0;
    border-radius: 29px;
    /* box-shadow: 0px 5px 7px #bd097574; */

    text-align: center;
    color: black;
    padding: 1rem;
    font-family: 'Figtree';

    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap:1rem;
}

.days-flip-card-back{
    /* width: 280px; */
    height: 350px;
    background-color: #f0f0f0;
    border-radius: 29px;
    /* box-shadow: 0px 5px 7px #bd097574; */

    text-align: center;
    color: black;
    padding: 0.5rem;
    font-family: 'Figtree';
    transform: rotateY(180deg);
}

.days-flip-card-back h3{
    margin-top:1rem;
    text-align: center;
}

.days-button-parteneri{
    width: 150px;
    height: 50px;
    border-radius: 30px;
    border:none;
    background-color: var(--roz);

    color: rgba(255, 255, 255, 0.874);
    font-size: 25px;
    font-family: 'Figtree';
    box-shadow: 0px 2px 4px #0000007c;
    text-decoration: none;
    transition: 0.3s ease;
    text-align: center;
}

.days-button-parteneri:hover{
    cursor:pointer;
    transform: scale(1.075);
    box-shadow: 0 4px 8px #0000007c;
}

::-webkit-scrollbar{
    width: 4px;
}

::-webkit-scrollbar-thumb{
    background-color: white;
}

.days-text-partener{
    margin: 10px;
    overflow: scroll;
    overflow-x: hidden;
    height: 220px;
    text-align: justify;
}


@media (max-width: 600px) {
  .days-info-events{
    width: 80%;
  }

  .days-parteneri{
    width: 80%;
    flex-direction:column;
    align-items: center;
    gap:120px;
  }
  .days-flip-card-front{
    width:100%;
  }
  
  .days-flip-card-back{
    width: 100%;
  }
  .days-flip-card-buton{
    transform: translate(0%,0%) rotateY(180deg);
    
} 
}