.hack-titlu {
    text-align: center;
}

.springathon h1{
    margin-bottom:1rem;
}

.springathon{
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}

.hack-body {
    width:70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 2% 5% 5% 5%; */
    gap: 2rem;
    height: fit-content;
}

.hack-info-stanga {
    color: white;
    height: auto;
    background-color: var(--albastru-random);
    width: 75%;
    border-radius: 29px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hack-info-dreapta {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 25%;
    justify-content: space-between;
    gap: 1rem;
}

.hack-detalii {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    height: fit-content;
}

.hack-detalii-indiv {
    font-family:'Poppins';
    color: var(--roz);
    font-weight:bold;
    
    background-color: #f0f0f0;
    height: 18%;
    border-radius: 29px;
    padding: 0.5rem;
    box-shadow: 0 6px 20px rgba(224, 101, 164,0.4);
    /* box-shadow: 2px 3px 5px 0px rgba(189, 9, 117, 0.51); */
}

.hack-detalii a:link, .hack-detalii-indiv a:visited{
    color:var(--roz);
    text-decoration: underline;
}

.hack-participare {
    height: 18%;
    width: 100%;
    border-radius: 29px;
    margin-top: 10%;
    background-color: #8EB1E7;
    box-shadow: 0 6px 20px rgba(224, 101, 164,0.4);
    border: 0;
    font-family:"Poppins";
}

.hack-descriere-content {
    padding: 2rem;
    text-align: justify;
    font-size:20px;
}

/* .hack-descriere-title{
    text-align: center;
} */

.hack-participare
{
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    background: var(--roz);
    background-size: 400%;
    cursor: pointer;
    padding: 0.75rem;
    transition: 0.3s ease;
}

.hack-participare:hover
{
    animation: animate 8s linear infinite;
    cursor:pointer;
    transform: scale(1.075);
}


@keyframes animate
{
    0%
    {
        background-position: 0%;
    }
    100%
    {
        background-position: 400%;
    }
}


@media screen and (max-width: 500px)  {
    .hack-body{
        flex-direction: column;
        width:85%;
    }

    .hack-info-stanga{
        width: 100%;
        height: auto;
    }

    .hack-info-dreapta{
        width: 100%;
    }

    .hack-detalii-indiv{
        padding: 0.5rem;
    }

    .hack-participare{
        background: var(--roz);
        width: 60%;
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 2.5rem;
        padding: 1.5rem;
    }

    .hack-participare-div{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
}


