body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Pixelify Sans', sans-serif;
    background-color: #4a6fa5; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-container {
    width: 60%;
    max-width: 500px;
    background-color: #add8e6;
    padding: 0 40px 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    border-radius: 65% 120% 120% 45% / 40% 100% 100% 55%;
    animation: wiggle 12s ease-in-out infinite;
    overflow: hidden;
}

@keyframes wiggle {
    0% { border-radius: 65% 120% 120% 45% / 40% 100% 100% 55%; }
    50% { border-radius: 45% 140% 140% 120% / 55% 120% 120% 120%; }
    100% { border-radius: 65% 145% 145% 45% / 40% 140% 155% 55%; }
}

.welcome-image {
    width: 108%;
    height: auto;
    display: block;
    margin-bottom: 25px;
}

.text-content h1 {
    color: #000080;
    font-size: 2.8em;
    margin: 0;
}

.text-content p {
    color: #000080;
    font-size: 1.1em;
    margin-top: 10px;
    line-height: 1.5;
}

.text-content .sub-text {
    font-size: 0.9em;
    opacity: 0.8;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.credits-button {
    display: inline-block;
    background-color: #000080;
    color: white;
    padding: 8px 50px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.credits-button:hover {
    background-color: #000050;
    transform: scale(1.05);
}

.enter-button {
    display: inline-block;
    background-color: #000080;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.enter-button:hover {
    background-color: #000050;
    transform: scale(1.05);
}