/* Basic reset and body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    padding: 20px;
    color: #333;
}

h1 {
    color: #444;
    margin-bottom: 20px;
}

img {
    width: 300px; /* Adjust size as needed */
    height: auto;
    display: inline-block;
    margin: 20px 0;
}

/* Keyframes for the image animation */
@keyframes moveImage {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Apply animation to the image */
#gta6-image {
    animation: moveImage 1s ease-in-out infinite;
}

p {
    margin: 20px 0;
}

a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
