body {
    background-color: #003566;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0;

  }
* {
    cursor: none;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 10000;
}

.trailing-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    z-index: 9999;
}

.cursor.hovered,
.trailing-cursor.hovered {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 255, 255, 0.9);
}

.cursor.clicked,
.trailing-cursor.clicked {
    transform: translate(-50%, -50%) scale(0.7);
}
.navbar {
    position: fixed;
    width: 50%;
    top: 0;
    height: auto;
    background: #001d3d;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    border-radius: 15px;
    overflow: hidden;
}

.navbar button {
    cursor: pointer;
    background-color: #023e8a;
    margin: 0 10px;
    border : 5px solid #3a7ca5;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
    cursor: none;
    color: white;
}

.navbar button:hover {
    background-color: #269cf7;
    border: 5px solid #0a70be;
    transition: background-color 0.3s;
    transition: border 0.3s;
}   
.gallery {
    color: white;
    background-color: #1b365a;
    border-radius: 15px;
    padding: 20px;
    justify-content: center;
    text-align: center;
    width: 75vw;
    height: 75vh;
    overflow: scroll;
   
    
}

.gallery img {
    width: 350px;
    height: 200px;
    margin: 10px;
    transition: transform 0.3s;
    border-radius: 15px;
}

.gallery img:hover {
    transform: scale(1.1);
    transition: transform 0.3s;

}
  #particles-js {
      width: 100vw;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
  }
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 35vh;
    width: 40vw;
    text-align: center;
    color: white;
    background-color: #1b365a;
    border-radius: 15px;
    padding: 20px;
}

.content h1 {
    margin: 10px -40px 15px 0;
    font-size: 3em;
    color: #ffffff;
    text-align: center;
}

.form__input {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background-color: #1b365a;
    color: #fff;
    border-radius: 8px;
    border: 3px solid #0a70be;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.form__input form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:white;
}

.form__input input {
    flex: 1;
    margin-right: 10px;
    padding: 10px;
}

.form__input:focus {
    outline: none;
    box-shadow: 0 4px 6px rgb(0, 0, 0, 0.5);
}

.form__input:hover {
    background-color: #1b365a;
}

/* For Chrome, Safari, and Edge */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
   height: 2%; /* Height of the scrollbar */
}

::-webkit-scrollbar-track {
    background: rgb(7, 139, 201); /* Track color */
}

::-webkit-scrollbar-thumb {
    background: #0a70be; /* Scrollbar color */
    border-radius: 6px; /* Roundness of the scrollbar */
}

::-webkit-scrollbar-thumb:hover {
    background: #0a70be; /* Color when hovering over the scrollbar */
}

/* For Firefox */
.scrollable-element {
    scrollbar-width: thin; /* Make scrollbar thinner */
    scrollbar-color: #0a70be #0a70be; /* Thumb color and track color */
}
.button {
    cursor: pointer;
    background-color: #023e8a;
    margin: 0 10px;
    border: 5px solid #3a7ca5;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
    margin-top: 10px;
    margin-left: 50px;
    cursor: none;
    color: white;
}
.skyscraper-ad {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    background-color: #f0f0f0;
    z-index: 9999;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.skyscraper-ad2 {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    background-color: #f0f0f0;
    z-index: 9999;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}