/* Resetting margins, paddings, and box-sizing for all elements */
* {
    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://images.rawpixel.com/image_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L3JtMjA4YmF0Y2gxNS1leWUtMDEuanBn.jpg') no-repeat center center fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
}

/* Setting the background image with gradient overlay */
/* body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)), url('https://images.rawpixel.com/image_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L3JtMjA4YmF0Y2gxNS1leWUtMDEuanBn.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

/* Styling the heading */
.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;
}
/* Styling the arrows */
.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;
}

/* Positioning the down arrow */
.down-arrow {
    bottom: 20px;
}

/* Positioning the up arrow */
.up-arrow {
    top: 20px;
    bottom:auto;
    color:white;
}
.arrow:hover{
    color:skyblue;
}

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

/* Styling the target section */
.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 */
}
#image-track {
    display: flex;
    gap: 4vmin;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(0%, -50%); 
    user-select: none; /* -- Prevent image highlighting -- */
  }
  
  #image-track > .image {
    width: 40vmin;
    height: 56vmin;
    object-fit: cover;
    object-position: 100% center;
  }
  .heading img{
    bottom:20px;
    cursor:pointer;
    width:250px;
    height:auto;
  }
.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: skyblue; /* Change co color: #ddd; /* Change color on hover */
}   