/* Fullscreen Background */
body {
    margin: 0;
    padding: 0;
    background: url('./pexels-pixabay-326055.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    top: 35%;
}

/* Headings */
h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 400;
    animation: bounce 2s infinite ease-in-out;
}

/* Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

a{
    color: white;
    text-decoration: none;
}
