/* Basic reset and body styling */
body {
    margin: 0;
    padding: 0;
    background-color: #ffebeb; /* Light pink background for a playful look */
    color: #333;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide scrollbars */
}

/* Centered container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Text header styles */
.text-header h1, .text-header h2, .text-header h3, .text-header h4, .text-header h5, .text-header h6 {
    margin: 0;
    padding: 0;
    color: #e74c3c; /* Red color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Shadow for depth */
}

/* Paragraph styles */
.paragraph {
    margin-top: 20px;
}

/* Style the image */
.paragraph img {
    width: 250px; /* Adjust size as needed */
    height: auto;
    margin: 20px 0; /* Space around the image */
}

/* Link styles */
#robux-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #3498db; /* Blue background color */
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Link hover effect */
#robux-link:hover {
    background-color: #2980b9; /* Darker blue */
    animation: bounce 0.5s; /* Bounce effect */
}

/* Keyframes for bounce effect */
@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
