*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.Portfolio-Popup-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff000000;
    transition: opacity 500ms;
    overflow: auto;
    z-index: 99;

}
.Portfolio-Popup{
    background-image: linear-gradient(to right bottom, #111111, #212122, #313134, #414246, #52545a);
    width: 560px;
    padding: 30px 40px;
    position: fixed;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 20px/20px;
    font-family: "Poppins",sans-serif;
    display: none;
    text-align: center;
    color: #ffffff;

    z-index: 100;
    max-height: 100vh;
    overflow: auto;
}
.Portfolio-Popup button{
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 30px;
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
}
.Portfolio-Popup button:hover {
    color: #2d81ed;;
  }
.Portfolio-Popup p{
    font-size: 16px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
    color: #ffffff;
}
.Portfolio-Popup a{
    display: block;
    width: 160px;
    position: relative;
    margin: 10px auto;
    border-radius: 50px/50px;
    text-align: center;
    color: #ffffff;
    border: 2px solid #2d81ed;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease-out;
}
.Portfolio-Popup a:hover {
    background: #2d81ed;;
    color: #ffffff;
  }

.Portfolio-Popup img {
    border-radius: 10px/10px;
  }