body {
    display: block;
    margin: 8px;
    text-align: center;
    background: linear-gradient(to right, #2a5298, #5ec6cc); /* Blue to sea green gradient */
    color: #f1f1f1; /* Light color for text for readability */
}

h1 {
    font-size: 3em; /* Make the site name larger */
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000; /* Add shadow for standout effect */
    margin-bottom: 20px; /* Spacing under the site name */
}

div.container {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background for container */
    border-radius: 15px; /* Rounded corners for the container */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Add some shadow to the container */
    max-width: 800px; /* Maximum width of the container */
    margin: auto; /* Center the container */
}

.gif-container {
    text-align: center; /* Center the GIF horizontally */
    padding: 20px; /* Add some space around the GIF */
    background-color: #f0f0f0; /* Optional: background color for the container */
    /* other styles as needed */
}

.my-gif {
    max-width: 100%; /* Maximum width of the GIF relative to its container */
    height: auto; /* Maintain aspect ratio */
    /* other styles as needed */
}

.social-links {
    margin-top: 20px;
}

.social-link {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.social-link:hover {
    background-color: #333;
    color: white;
}
