body{

    min-height: 100vh;
    scroll-behavior: smooth;

}

.close-popup h2 {

    font-weight: 800;
	font-family:Roboto;
	font-size:30px;
}

.hidden{

    display: none;

}



.screen-overlay{
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.6;
    z-index: 3;
    width: 100%;
    min-height: 100%;
    height: 200%;
}

.body-container{

    min-height: 100%;
    overflow: hidden;
}

.flex-container{
    margin: 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}



.laureat{
    cursor: pointer;
	width:100%;
}


.laureat:hover .project-caption{

    transform: translateY(0);
    opacity: 1;

}



.project-caption{

    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all ease 1s;
    background-color: rgba(231, 20, 20, 0.836);
    color: aliceblue;
    padding:5px 15px;
    transform: translateY(100%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.popup-container{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    opacity: 1;
    z-index: 3;
    transition: all ease 0.5s;

}

.popup-box {

    position: sticky;
    top: 20px;
    background-color: rgb(255, 255, 255);
    min-width: 550px;
    width: 50%;
    max-width: 600px;
    padding: 20px;
    font-size: 19px;
    box-shadow: 0px 0px 25px 0px black;
    z-index: 99;
    transform: translateY(-100%);
    transition: all ease 0.5s;
    text-align: center;

}

.close-popup{

    position: absolute;
    top: 10px;
    right: 5%;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0px 5px;
    
    z-index: 9999!important;

}

.detail-title{

    text-align: center;

}

.popup-box p {

    text-align: left;
    margin: 10px 0;

}

.detail-img {

    width: 40%;
    margin: 10px auto;

}

.detail-button {

    
    background-color: white;
    border-style: none;
    border-radius: 5px;
    border: 2px solid red;
    transition: color ease 0.5s;
    transition: background-color ease 0.5s;
    /* transition: transform scale ease 0.5s;
    transition: translateY linear 0.2s; */
    padding: 5px 0px 0px;
    margin: 20px auto;
    margin-bottom: 0px;
    font-size: 20px;
    text-decoration: none!important;
    display: block;
    max-width: 20%;

}



.header-container{

    margin: 30px auto;

}



.CTA{

    text-align: center;
    margin: 30px auto;

}

.footer-laureat{

    margin: 50px auto;

}

.detail-button:hover{

    color: white;
    background-color: red;
    transform: scale(1.2);

}

.detail-button:active {

    transform: translateY(2px);

}
.portraits img{
	border-radius:50%;
}

@media only screen and (max-width:649px) {



    .popup-box{

        width: 90%;
        min-width: none;

    }
    
}

@media only screen and (max-width:480px){
    

    
    .popup-box{

        width: 90%;
        min-width: 320px;

    }

}
