@import url('https://fonts.googleapis.com/css2?family=Protest+Strike&display=swap');

/* Set Margin Padding and Font for whole page */
* {
    margin: 0;
    padding: 0;
}

/* Body specific CSS */
body {
    background-color: #f8f4e3;
    width: 100vw;
}

/* Paragraph specific CSS */
p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
    color: #4a4a4a;
    text-align: center;
}

/* Style for all images - maintain aspect ratio */
img {
    max-width: 250px;
    /* Height adjusts automatically */
    height: auto;
    /* Rounded corners */
    border-radius: 15px;
}

/* Remove default a element CSS */
a {
    all: unset;
}

/* Container - centers all content within container */
.container {
    width: 100%;
    /* Changed to min-height and max-width for flexibility */
    max-width: 1200px;
    min-height: 400px;
    /* Allows Fluidity of the Containers Content */
    display: flex;
    /*  Sets Direction to Column*/
    flex-direction: column;
    /* Vertically Centered */
    align-items: center;
    /* Horizontally Centered */
    justify-content: center;
    /* Added padding for better spacing */
    padding: 20px;
    /* Added: Space between image and text */
    gap: 20px;
    /* Center the container */
    margin: 0 auto;
}

/* Width of the paragraphs */
.width-1000px {
    width: 1000px;
}