body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2d2d2e;
    color: #334155;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	background-image: url('https://cdn.steamstatic.com/apps/dota2/images/dota_react//largo/largo_comic_cover.png'); 
    background-size: cover; 
    background-position: center;  
    background-repeat: no-repeat; 
    background-attachment: fixed;
}

header {
    background-color: #0f172a;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.hero {
    text-align: center;
    padding: 2rem;
    background-color: #111e30;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    width: 100%;
}


.rotating-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    
    animation: spin 6s linear infinite; 
}

/* The animation instructions */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

h2 {
    margin-bottom: 1.5rem;
    color: #d4d5d6;
}

/* Styles for your new image */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #111e30;
    font-size: 0.875rem;
}