body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}

/* Background Section */
.top {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-image: url(blue-milky-way-galaxy-4k-7y-1360x768.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    justify-content: center;
    animation: change 20s infinite ease-in-out;
}

/* Center Content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-family: sans-serif;
    text-align: center;
    width: 90%;
}

/* Title Styling */
.content h1 {
    color: #ffffff;
    font-size: 80px;  /* Reduced size for better visibility */
    letter-spacing: 10px;
    margin-bottom: 10px;
}

/* Description */
.content p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    width: 80%;
    margin: auto;
}

/* Button Styling */
.content a {
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    background-color: rgba(67, 67, 224, 0.92);
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-block;
    transition: 0.3s;
}

.content a:hover {
    background-color: rgba(0, 0, 0, 0.85);
}

/* Background Image Animation */
@keyframes change {
    0% { background-image: url(blue-milky-way-galaxy-4k-7y-1360x768.jpg); }
    20% { background-image: url(images/newNada.jpg); }
    40% { background-image: url(6d735ebe9db1126500d2a2c941491f93.jpg); }
    60% { background-image: url(blue-milky-way-galaxy-4k-7y-1360x768.jpg); }
    80% { background-image: url(images/wallpaperflare.com_wallpaper3.jpg); }
    100% { background-image: url(blue-milky-way-galaxy-4k-7y-1360x768.jpg); }
}
