* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: radial-gradient(circle, #2c3e50, #34495e, #1e90ff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Container for all content */
.container {
    text-align: center;
    color: #fff;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 2s ease;
    max-width: 80%;
    z-index: 10;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7);
    color: #f39c12;
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    0% {
        text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    }

    100% {
        text-shadow: 2px 2px 20px rgba(255, 255, 255, 1);
    }
}

p {
    font-size: 1.4rem;
    margin-top: 20px;
    color: #bdc3c7;
    line-height: 1.6;
}

/* Buttons */
.buttons {
    margin-top: 30px;
}

.button {
    margin: 10px;
    padding: 12px 30px;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.button:hover {
    background: linear-gradient(135deg, #27ae60, #2980b9);
    transform: translateY(-5px);
}

/* Image */
img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInImage 2s ease-in-out;
}

@keyframes fadeInImage {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animated Tyre-like Circles */
.tyre {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: moveTyre 10s infinite linear;
}

.tyre-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-duration: 12s;
    animation-delay: 1s;
}

.tyre-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 10%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.tyre-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.tyre-4 {
    width: 140px;
    height: 140px;
    bottom: 20%;
    right: 20%;
    animation-duration: 16s;
    animation-delay: 4s;
}

@keyframes moveTyre {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(200px, -200px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}


  /* Responsiveness */
  @media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.1rem;
    }

    .button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    img {
        max-width: 90%;
    }

    .tyre {
        display: none;
    }
}