/* Global styles */
body {
    margin: 0;
    padding: 0;
    background-color: #87CEEB; /* Sky blue, ocean feel */
    font-family: 'Lato', sans-serif;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); /* Wood texture background */
}

/* Message Container */
.message-container {
    background-color: rgba(255, 248, 220, 0.8); /* Semi-transparent old parchment color */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    max-width: 600px;
    width: 80%;
    border: 5px solid #8B4513; /* Dark brown border, mimicking wooden ship materials */
    animation: fadeIn 1.5s ease-in-out;
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/old-map.png'); /* Old map texture */
    background-size: cover;
}

/* Title Styling */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #FF6347; /* Tomato red, giving it a sailor's urgency */
    text-shadow: 2px 2px #8B4513; /* Shadow to make the text pop, like a carved sign */
}

/* Message Text Styling */
#krabsMessage {
    font-size: 1.7rem;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
    margin-top: 20px;
    font-weight: bold;
    line-height: 1.6;
    text-shadow: 1px 1px #8B4513; /* Shadow for text, to give it more depth */
}

/* Fade In Effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Adding a nautical rope around the container */
.message-container {
    border: 10px solid transparent;
    padding: 15px;
    border-image: url('https://www.transparenttextures.com/patterns/rope.png') 30;
}
