/* Portfolio Page Styles */

.portfolio-container {
    margin: 0 auto;
    padding: 0;
}

.portfolio-header {
    background-image: url('/portfolio/Media/MonsterOfTheCavern.png');
    height: 90vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-header h1 {
    font-size: 3em;
    padding: 0;
    text-align: center;
    max-width: 80vw;
    color: white;
    transition: color 0.1s ease-out;
}

.IntroductionContainer {
    display: block;
    margin: 30px 2%;
    padding: 2%;
    background-color: var(--bg-darker);
    min-height: 100vh;
    border-radius: 20px;
    border: var(--primary-purple) 2px solid;
}

.PortfolioPeicesContainer {
    width: 100%;
    display: grid;
    grid: auto/auto auto;
}

@media (orientation: portrait) {
    .PortfolioPeicesContainer {
        grid: auto/auto;
    }
}

.maincontainer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 50vw;
    max-height: 50vh;
}

.shadow{
    max-width: 90%;
    max-height: 90%;
    background-color: black;
    display: inline-block;
    position: relative;
    border-radius: 20px;
}
.PortfolioPeice{
    width: auto;
    height: auto;
}
.PortfolioPeice img {
    width: 100%;
    max-height: 100%;
    border-radius: 20px;
}
.description{
    position: absolute;
    bottom: 0px;
    padding: 0px;
    margin: 0px;
    background-color: #151515af;
    border-radius: 20px;
    width: 100%;
}
.description p{
    padding: 0;
}