style.css
body,html {
    margin:0;
    padding:10px;
    width:100%;
    height:100%;
    font-family: 'Press Start 2P', monospace;
    background-image:url(glitters-shinny.gif); 
    background-size: cover;   
    background-position: center;
    color: white;             
    position: relative;

}

a {
    text-decoration: none;
    color: #4b004b;
    transition: color 0.3s;
}

header {
    background-image: url(pinkpinkcheetah.jpeg);
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #4b004b;
}

header h1 {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    color: rgb(250, 52, 151);
    font-size: 3em;
    margin: 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
    margin-top: 10px;
}

nav a {
    display: block;
    margin: 8px 0;
    font-size: 1.2em;
    color: #fc78c9;
    font-weight: bold;
    transition: 0.3s;

}

nav a:hover {
    color: #ffffff;
}


/* PAGE CONTAINER */
.container {
    width: 90%;
    max-width: 2000px;
    margin: 0 auto;
    min-height: 100vh;
    line-height: 1.6;
    text-align: justify;
    background-attachment: scroll;    
    background-image: url('a54334e6fb8eb94ada85fdcd63232355.jpg');
    background-size: auto;  
    background-position: center;
    background-repeat:repeat;
    position: relative;
    box-sizing: border-box;
    padding: 20px;

}


/* PORTFOLIO CARDS */
.card-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 60px;
    justify-content: center;
        overflow-x: auto;
        padding: 20px 0;
}

.card {
    background-color: #ffff;
    border: 2px solid #4b004b;
    border-radius: 30px;
    width: 100%;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 70%;
    border-radius: 12px;
}

.card h3 {
    color: #f3b2dd;
    margin: 10px 0 5px;
}

.card p {
    font-size: 0.9em;
    color: #c6a664;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* BUTTONS */

.button {
    background-color: #fc78c9;
    color: #000000;
    width:auto;
    padding: 8px 15px;
    margin: 10px;
    background-position: center;
    border-radius: 25px;    
    font-weight: bold;
    transition: 0.2s;
    display:inline-block;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    text-align: center;    
}

.button:hover {
    background-color: #ffffff;
}

/* BLOG PAGE */
article {
    background-color: #ffff;
    border: 2px solid #f7e6ff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

article h2 {
    color: #f19cc4;
}

article p {
    color: #f1b9da;
    line-height: 1.6em;
}
article {
    background-color: #ffff;
    border: 2px solid #f7e6ff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}


/* FOOTER */
 footer {
  background-image: url('pinkpinkcheetah.jpeg');  
  width: 100%;
  min-height: 80px;          
  padding: 20px 0;            
  text-align: center;
  display: flex;              
  flex-direction: column;    
  justify-content: center;   
  align-items: center;        
  border-top: 1px solid #4b004b;
  box-sizing: border-box;     
}


.divider{
    width:60%;
    max-width:100%;
    height:auto;
    display:block;
    margin:15px auto;
}

.cute-image{
    width:80%;
    max-width:100%;
    height: auto;
    display: block;
    margin:15px auto;
}

.coquette-discord.gif{
    background-position: center;
    width: max-content;
    margin: auto;
}    


@media screen and (max-width:500px) {
    /* Add mobile styles here */
}

img,picture{
    max-width: 70%;
    height:70%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
