/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

/* Header */
header {
    text-align: right;
    padding: 10px 20px;
    font-size: 8px;
}

/* Date Info Section */
#date-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    font-size: 18px;
}

/* Horizontal Line */
hr {
    width: 90%;
    margin: 10px auto;
    border: 1px solid #ddd;
}

/* Main Layout */
main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 40px;
    justify-items: center;
}

/* Quote Box */
#quote-box {
    background: #fcfcf4;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    width: 250px;
    height: 200px;
    text-align: center;
}

/* Family Photo */
#family-photo {
    background: #fcfcf4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    grid-column: span 2;
}

#family-photo img {
    width: 100%;
    border-radius: 10px;
}

/* GIF Box */
#gif-box {
    background: #fcfcf4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 400px;
}

#gif-box img {
    width: 100%;
    border-radius: 10px;
}

/* Video Container */
#video-container {
    background: #fcfcf4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 400px;
}

/* Responsive Design */
@media (max-width: 900px) {
    main {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #quote-box, #gif-box, #video-container {
        width: 80%;
    }
}