/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.logo {
    max-width: 500px; /* Increase the max-width to make the logo larger */
    height: auto;
}

/* Hero Section Styles */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    text-align: center;
}

.moving-text {
    font-size: 2em;
    color: #333;
    animation: moveText 2s infinite;
}

@keyframes moveText {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.social-media {
    margin-top: 10px;
}