body{
    margin: 0;
    padding: 2.5rem;
}
h1{
    margin: 1rem 0;
}
h1,
h2,
p{
    font-family: 'Poppins', sans-serif;
}
p{
    font-size: 0.8rem;
}
a{
    text-decoration: none;
    color: inherit;
}
.page-wrapper{
    width: 100%;
    height: 100%;
}
.pw-section{
    max-width: 100%;
    width: 100%;
    display: flex;
    max-height: 30%;
    height: 100%;
    gap: 40px;
}
.pws-card{
    border-radius: 10px;
    max-height: 252px;
    height: 100%;
    max-width: 428px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.pws-card .details{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -60px;
    box-sizing: border-box;
    padding: 10px;
    background-color: rgba(0,0,0,0.2);
    transition: 0.2s ease-in-out;
    pointer-events: none;
}
.pws-card:hover .details{
    bottom: 0px;
}
.pws-card a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.pws-card img{
    max-width: 80%;
    max-height: 70%;
}
.sunstate{
    background-color: #000000;
}
.online-library{
    background-color: #D9D9D9;
}
.movielab{
    background-image: linear-gradient(45deg,#2E1A47, #164489, #008AC6);
}
.dev{
    background-image: linear-gradient(180deg,#FA00FF,#00C2FF);
}
.dev h2{
    color: white;
}
.lucy{
    background-color: #1c1c1c;
}
.lizzie{
    background-color: #F0F0F0;
}