/* Global Styles */
body {
    background-image: url('../images/sakura.jpg');
    background-size: cover;
    font-family: "Open Sans", Helvetica, Arial, Helvetica, sans-serif;
}

.page-container {
    width: 100%;
    margin: 0 auto;
}

/* Grid Styles */
.photo-grid {
    width: auto;
    margin: 0 auto;
}

.grid-item {
    width: 400px;
    margin: 20px;
}

.grid-item img {
    width: 100%;
    height: auto;
}

/*Card Styles*/
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
}

h1,
p {
    margin-bottom: 1rem;
}

p{
    line-height: 1.75em;
    font-weight: 500;
}

.photo-grid .grid-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 15px 15px 20px rgb(197, 199, 199);
    border: 2px solid black;
}

.card-content {
    position: relative;
    padding: 20px;
}

.card-content-container {
    position: relative;
    margin-bottom: 30px; /*Add margin so the icon doesn't overlap the text*/
}

.material-icons {
    position: absolute;
    bottom: 0; /*Place the icon at the bottom of the container*/
    right: 0;  /*Align it to the right of the container*/
    font-size: 40px;
    color: rgb(219, 138, 150);
}

.card-content p {
    text-wrap: normal;
}

.css-audio {
    display: block; /*Audio player in block-level element*/
    margin: 5px auto 0; /*Centralize the audio player horizontally*/
    width: 80%; /*Optional: adjust to make the audio player fit design*/
}