html {
    background: url("y2k.png") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.center-div {
    margin: auto;
    text-align: center;
}
.header-stack {
    background: linear-gradient(
        deeppink 0px,
        hotpink 20px,
        pink 80px,
        hotpink 100px,
        deeppink 120px
    );
    padding: 50px 0;
    text-align: center;
}
.header-stack h1 {
    color: white;
    font-size: 2.5rem;
}
.intro {
    width: 60%;
    background: black;
    padding: 30px;
    border-radius: 12px;
    margin-top: 60px;
    color: hotpink;
}
.section-title {
    text-align: center;
    padding: 50px 0 10px;
    color: white;
    font-size: 1.8rem;
}
.container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.square {
    background-color: #c969a0;
    color: white;
    width: auto;
    height: auto;
    display: inline-block;
}

.square img {
    display: block;
    width: 100%;
    height: auto;
}
.caption {
    background: white;
    width: 60%;
    margin: 10px auto 40px;
    padding: 12px;
    border-radius: 10px;
    font-size: 1.2rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(260px, 1fr));
    grid-gap: 25px;
    width: 80%;
    margin: 40px auto;
}
.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}
.portfolio-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: white;
    padding: 10px;
}
.portfolio-item h3 {
    background: hotpink;
    color: white;
    padding: 12px;
    margin: 0;
}
.navbar {
    width: 100%;
    background: hotpink;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.navbar a {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 8px;
}
.navbar a:hover {
    background: none;
    color: pink;
    text-decoration: underline;
}
}
body {
    padding-top: 70px;
}
.creative-works {
    display: flex;
    justify-content: center;
    grid-gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}
.y2k-card {
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 182, 255, 0.4); 
    border: 3px solid rgba(255, 105, 180, 0.8);
}
.y2k-card img {
    width: 260px;
    height: auto;
    border-radius: 15px;
    display: block;
}
.parody-container {
    display: flex;
    justify-content: center;
    grid-gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.parody-container 
.square img {
    width: auto;
    height: auto;
    max-width: 300px;
    border-radius: 15px;
    display: block;
}
.contact-card {
    margin: 20px auto;
    padding: 20px;
    width: fit-content;
    text-align: center;
    background: rgba(255, 182, 255, 0.4);
    border: 3px solid hotpink;
    border-radius: 20px;

}
.contact-card h3 {
    color: white;
    margin: 0;
    line-height: 1.6;
}

