﻿body {
    height: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.hero {
    flex: 1 0 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

    .hero img {
        max-width: 300px;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

.description {
    margin-top: 2rem;
    font-size: 1.25rem;
    text-align: center;
    color: #333;
}

    .description h1 {
        color: darkgreen;
        font-family: 'Arial', sans-serif;
        font-size: 2.5rem;
        font-weight: bold;
    }

footer {
    flex: 0 0 10%;
    background-color: #343a40;
    color: white;
    padding: 1rem 0;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

@keyframes rotateImage {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}


.rotating-image {
    animation: rotateImage 2s; 
    animation-delay: 10s; 
    cursor: pointer;
}
