
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(to right, #00008B, #87CEEB);
    background-size: 200% 200%;
    animation: futuristic-animation 10s ease infinite;
    color: #fff;
}

.top-right-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.top-right-buttons button {
    background-color: white;
    color: black;
    border: 1px solid #fff;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
}

.top-right-buttons button:hover {
    background-color: black;
    color: white;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    z-index: 2;
}

@keyframes futuristic-animation {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
