.result-links{
    display: flex;
    width: 50vw;
    justify-content: space-between;
    align-items: center;
   
    margin:  20px auto;
}

.result-links a{
    width: 200px;
    background-color: var( --button_01);
    padding: 5px;
    color: black;
    margin: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.479);
    text-align: center;
    text-decoration: none;
}


.result-links p{

    color: black;
    font-size: large;

}

.result-links a:hover{
    background-color: var( --btn_hover);
}

.result-links a:active{
    background-color: var( --btn_hover);

}


.result{
    width: 90vw;
    height: 70vh;
    margin: auto;
    overflow-y: scroll;
    display: flex;
    flex-wrap: wrap;
}

.winners , .merits , .acceptence{
    display: flex;
    width: 100%;
    height: 40%;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.placeholder-win{
    width: 350px;
    height: 250px;
    margin: auto;
    position: relative;
    
}

.placeholder-win h3{
    position: absolute;
    width: 100px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.808);
    text-align: center;
    border-radius: 0 0  8PX 0;
    
}

.placeholder-win img{
    width: 100%;
    height: 90%;
    border: 8PX solid rgb(255, 255, 255);
    object-fit: cover;
    border-radius: 8px;
}

.placeholder-win img:hover{
    object-fit: contain;
}

.placeholder-win .details{
    display: flex;
    justify-content: space-between;
}

.placeholder-win .name{
    color: rgb(75, 75, 75);
}

.merits h3{
    color: black;
    text-align: center;
    
}

.placeholder-merits{
    width: 250px;
    height: 150px;
    margin: auto;
    position: relative;
}




.placeholder-merits img{
    width: 250px;
    height: 150px;
    margin: auto;
    object-fit: cover;
}

.placeholder-merits img:hover{
    object-fit: contain;
}



.placeholder-merits p{
    color: black;
    margin: 5px;
}

.placeholder-merits .details{
    display: flex;
    justify-content: space-between;
}

.acceptence h3{
    color: black;
}

.placeholder-merits .name{
    color: rgb(141, 141, 141);
    text-transform: capitalize;
}





@media (max-width:400px) {

    .result-links{
       
        flex-direction: column;
        width: 90vw;
       
       
    }


    .placeholder-win{
        width: 250px;
        height: 150px;
        margin-bottom: 30px;
    }

    .placeholder-merits{
        margin-bottom: 30px;

    }

    .winners , .merits , .acceptence{
        height: auto;
    }
    
}