* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow: hidden;
}

/* Ensuring html and body take up the full height of the viewport */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)), url('https://georgemillerart.com/cdn/shop/products/il_fullxfull.3846364129_skh5.jpg?v=1674957798&width=1946') no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.heading {
    text-align: center;
    color: white;
    font-family: 'Rubik', sans-serif;
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center content horizontally */
    position: relative;
}

.heading p {
    font-size: 23px;
}

.arrow {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    position: absolute;
    left: 50%;
    animation: bounce 2s infinite;
    bottom: 20px;
    transition: transform 0.8s ease-in-out;
}

.down-arrow {
    bottom: 20px;
}

.up-arrow {
    top: 20px;
    bottom:auto;
    color:white;
}
.arrow:hover{
    color: yellow;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    text-align: center;
    background-color: black;
    color: white; /* Ensure text is visible */
    font-family: 'Rubik', sans-serif;
    position: relative;
    overflow: hidden; /* Hide overflow if needed */
}
.heading a{
    text-decoration: none;
    color: white;
    margin: 0 10px; /* Space between links */
    padding: 5px;
    font-size: 18px;
    /* Optional: Add some styling for hover effect */
    transition: color 0.3s ease;
    margin-top:20px;
}
.heading a:hover{
    color:yellow;
}
.about {
    font-size: 25px;
    width: 1000px;
    text-align: center;
    border: 5px solid white;
    border-radius: 15px;
    padding: 25px;
    background-color: transparent; /* Ensure initial background is transparent */
    color: inherit; /* Maintain initial text color */
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out; /* Apply transition to both background and color */
}

.about:hover {
    background-color: yellow;
    color: black;
    cursor: pointer;
}