html, body {
    margin: 0;
    padding: 0;
    font-family: Tahoma, sans-serif;
}

nav {
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 0);
    position: sticky;
    top: 0;
    z-index: 10;
    transition: height 0.3s, background-color 0.3s;
    display:flex;
    color: white;
    justify-content: space-between;
    align-items: center;
}

nav img {
    margin-left: 50px;
    width: 90px;
    height: 90px;
    opacity: 0.9;
    transition: width 0.27s, height 0.27s;
}

nav a {
    color: rgb(176, 176, 176);
    text-decoration: none;
    margin-right: 50px;
    align-self: center;
    font-family: Tahoma, sans-serif;
    font-size: 18px;
}

nav.shrink {
    height: 80px;
}

nav.shrink img {
    width: 75px;
    height: 75px;
}

.main {
    width: 100%;
    height: 2000px;
    background-color: black;
    margin: 0;
    padding-top: 15%;
}

.main p{
    margin: 0;
    margin-left: 100px;
    color:rgb(255, 255, 255);
    font-size: 60px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    line-height: 1.3;
    background-image: linear-gradient(to bottom, #ffffff, #000000); /* Gradient from white to black */
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 21%;
}

#info {
    background-color: rgb(0, 0, 0);
    width: 100%;
    min-height: 800px;
    display: flex;
    justify-content: space-around;
    z-index: 100;
    justify-content: center;
}

.info1 {
    background-color: transparent;
    width: 350px;
    height: 400px;
    border-radius: 10px;
    flex-grow: 1;
}

.stay {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.stay.absolute {
    position: absolute;
    top: auto;
    bottom: 0;
}

.infoContent1 {
    margin-top: 20px;
    color: white;
    font-size: 30px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    margin-left: 270px;
    margin-top: 250px;
}

.infoContent {
    margin-top: 20px;
    color: white;
    font-size: 30px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    margin-left: 50px;
    margin-top: 250px;
    background-image: linear-gradient(to left, #ededed, #282727); /* Gradient from white to black */
    -webkit-background-clip: text;
    color: transparent;
}

.infoContent2 {
    margin-top: 20px;
    color: white;
    font-size: 30px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    margin-left: 50px;
    margin-top: 70px;
    background-image: linear-gradient(to left, #ededed, #282727); /* Gradient from white to black */
    -webkit-background-clip: text;
    color: transparent;
    transition: font-size 1s;
}

.box2{
    padding-top: 170px;
}

.empty{
    width:100%;
    height: 400px;
    background-color: black;
}

.empty1{
    width:100%;
    height: 1800px;
    background-color: black;
}

.next {
    position: relative;
    background-color: black;
    width: 100%;
    height: 1000px;
    display: flex; /* Use flexbox for centering */
    justify-content: center;
    align-items: center;
}

.circle-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Initially not visible */
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  .circle-visible {
    opacity: 1 !important;
    visibility: visible !important;
  }  

.circle-container {
    position: relative;
    width: 200px; /* Set a specific width */
    height: 200px; /* Set a specific height */
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #333;
    transform: translate(-50%, -50%); /* Center the circles */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.circle-large {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
}

.circle-medium {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
}

.circle-small {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
}

.spreading-love-fixed {
    position: fixed !important;
    top: 150px !important; /* Adjust as needed */
    left: 50px !important; /* Adjust as needed */
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    text-align: center;
    z-index: 2; /* Ensure it's above the circles */
}
