/* Styles for Realm1 - Now Mobile Responsive */

body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background: url('/background.jpg') no-repeat top left fixed;
    background-size: 100vw auto;
    color: #ddd;
}

.content {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(50, 50, 50, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.header {
    display: flex;
    align-items: center; /* Centers text to image height */
    justify-content: center; /* Centers the whole block horizontally */
    gap: 10px; /* Adds spacing between image and text */
}

h1 {
    text-align: center;
    color: #ff5050;
}

p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .content {
        max-width: 90%;
        margin: 20px auto;
        padding: 15px;
    }

    body {
        background-size: auto 100vh;
    }

    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 16px;
    }
}
