


 .blogfolder{
 
 
 margin-top:10%;
 
 
 }
 
 .bloginfo{
 
 color:#00ccff;
 font-size:15px;
 padding:10px;
 }
 


.alexis {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;    /* horizontal center */
  align-items: center;        /* vertical center */
  min-height: 100vh;          /* full viewport height */
  margin: 0;                  /* remove extra margin */
}
.alexis-img {
  width: 300px;              /* Set a fixed width */
  max-width: 90%;            /* Allow responsiveness on smaller screens */
  height: auto;              /* Maintain aspect ratio */
  border-radius: 10px;       /* Rounded corners */
  
 
 
  display: block;            /* Prevent inline spacing issues */
  margin: 0 auto;            /* Horizontally center the image */
}


    .content p{
    
    
    color:#111;
    
    
    }


 
    @media (prefers-color-scheme: dark) {
    
    
    
    .everything .theblog-container {
    max-width: 800px;
    
    
    
    margin-left:0px;
    background-color:#111;
    }
    
    .blog-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
    background-color:#111;
    
    }
    
    .author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-left:0px;
    
    border:1px solid #00ccff;
    }
    
    .author-info {
    display: flex;
    flex-direction: column;
    }
    
    .author-name {
    
    
    font-size: 15px;
    font-weight: bold;
    }
    
    .update-date {
    margin: 5px 10px 0;
    font-size: 0.9rem;
    color: #aaa;
    }
    
    .blog-post {
    line-height: 1.6;
    }
    
    .post-title {
    font-size: 2rem;
    margin-bottom: 10px;
    }
    
    .post-content {
    font-size: 1.1rem;
    }
    
    .thecard {
    background: white;
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: visible; /* allow image to overflow */
    position: relative;
    margin-top:80px;
    
    
    }
    
    .header {
    background-color: #035c75;
    padding: 70px 20px 20px;
    position: relative;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    }
    
    .profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid white;
    position: absolute;
    top: -20px;
    left: 20px;
    object-fit: cover;
    background: white;
    }
    
    .name {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.2em;
    margin-top: -40px;
    text-align: right;
    margin-right:5px;
    }
    
    .content {
    padding: 20px;
    font-size: 0.95em;
    color: #000000;
    line-height: 1.6;
    
     
   }
    
    
    body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #eee;
    margin: 0;
    padding: 0;
    }
    .container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    background-color: #1e1e1e;
    }
    h1 {
    text-align: center;
    color: #00e676;
    margin-bottom: 30px;
    }
    h2 {
    color: #64ffda;
    margin-top: 25px;
    }
    p {
    line-height: 1.7;
    margin-bottom: 20px;
    }
    blockquote {
    border-left: 4px solid #00e5ff;
    padding-left: 15px;
    font-style: italic;
    color: #b0bec5;
    margin: 30px 0;
    }
    footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #888;
    }
    
    /* Navbar */
    .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    /*
    background: linear-gradient(to right, #12054a, #08a9df);
    */
    background:#ddd;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 3000;
    /*
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.3);
    
    
    transition: 0.3s;
    */
    }
    
    .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    }
    
    .hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    }
    
    .bar {
    height: 3px;
    width: 100%;
    background: #00CFFF;
    border-radius: 5px;
    transition: all 0.3s ease;
    }
    
    
    .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    }
    
    .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    }
    
    .search-container {
    display: flex;
    align-items: center;
    position: relative;
    }
    
    .search-icon {
    font-size: 24px;
    color: #00CFFF;
    cursor: pointer;
    }
    
    .search-input {
    display: none;
    height: 30px;
    border: none;
    border-radius: 20px;
    padding: 5px 10px;
    outline: none;
    margin-left: 10px;
    transition: width 0.3s ease;
    }
    
    .search-input.active {
    display: block;
    width: 180px;
    }
    
    /* Menu */
    .menu-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: #111;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    transition: left 0.4s ease;
    background-color:#111;
    z-index: 2500;
    padding-top:10px;
    }
    
    .menu-links.active {
    left: 0;
    }
    
    .menu-links a {
    color: #00CFFF;
    text-decoration: none;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top:2px;
    display: flex;
    align-items: center;
    gap: 15px;
    }
    
    
    
    
    .menu-links a {
    margin: 20px 0; /* Increase vertical spacing between list items */
    
    }
    
    .menu-links li a {
    display: block;
    padding: 10px 0;
    
    }
    
    /* Slideshow */
    .slideshow-container {
    margin-top: 70px;
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #e7e7e7, #f7f7f7);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
    }
    
    .slide.active {
    opacity: 1;
    }
    
    .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    
    /* Bottom Navigation */
    .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    /*
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.3);
    
    
    transition: 0.3s;
    */
    z-index: 1000;
    
    }
    
    .bottom-nav i {
    font-size: 24px;
    color: #00CFFF;
    transition: color 0.3s;
    cursor: pointer;
    }
    
    .bottom-nav i:hover {
    color: white;
    }
    
    /* Particles Background */
    #particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    
    }
    
    
    
    
    
    
    
    
    
    
    .image-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    
    
    transition: 0.3s;
    
    
    
    }
    
    
    
    text-decoration:none;
    
    }
    
    
    
    
    .imageitemtry {
    width: 150px; /* adjust the width as needed */
    height: 150px; /* adjust the height as needed */
    margin: 10px; /* adjust the margin as needed */
    object-fit: cover;
    border-radius:50%;
    border:1px solid #12054a;
    /*
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    
    
    transition: 0.3s;
    */
    }
    
    .image-container2 a{
    
    text-decoration:none;
    
    }
    
    
    .image-item{
    
    margin:10px;
    display:flex;
    flex-direction:column;
    flex-shrink:0;
    background-color:#f7f7f7f7;
    align-items:center;
    flex-shrink:0;
    padding:10px;
    border-radius: 10px; /* Add a border radius */
    /*
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    
    
    transition: 0.3s;
    */
    /*
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a box shadow */
    
    
    transition: transform 0.2s ease-in-out; /* Add a transition effect */
    */
    
    flex: 0 0 auto;
    margin-right: 10px; /* some space between items */
    }
    
    
    
    
    
    
    
    .top-songs, .featured-artists {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px;
    scroll-behavior: smooth;
    }
    .top-songs::-webkit-scrollbar, .featured-artists::-webkit-scrollbar {
    display: none;
    }
    .song-item, .artist-item {
    flex: 0 0 auto;
    text-align: center;
    background: #111;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    
    
    transition: 0.3s;
    width: 150px;
    }
    .song-item:hover, .artist-item:hover {
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.6);
    transform: translateY(-5px);
    }
    .song-item img, .artist-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #00CFFF;
    
    
    
    
    
    
    
    
    
    }
    
    
    .image-item a{
    display:block;
    
    }
    
    .image-item:hover {
    transform: scale(1.05); /* Add a hover effect */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Enhance the box shadow on hover */
    }
    /*
    .image-text{
    font-size:0.8rem;
    text-align:center;
    margin-top:5px;
    
    
    }
    */
    /*
    .image-item img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 1px solid #FFFFFF !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a box shadow to the image */
    }
    */
    .image-text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 5px;
    color: #333; /* Change the text color */
    font-weight: bold; /* Make the text bold */
    }
    /* image container 2*/
    .image-container2 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    
    
    
    }
    
    
    /*
    
    .image-container2 img {
    width: 120px; /* adjust the width as needed */
    /* height: 120px; /* adjust the height as needed */
    /* margin: 10px; /* adjust the margin as needed */
    /* object-fit: cover;
    /*border-radius:12px;
    }
    */
    
    
    
    .imageitemtry2 {
    width: 150px; /* adjust the width as needed */
    height: 150px; /* adjust the height as needed */
    margin: 10px; /* adjust the margin as needed */
    object-fit: cover;
    
    border-radius:12px !important;
    border:1px solid #12054a;
    /*
    
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    
    
    transition: 0.3s;
    */
    }
    
    .imageitemtry2 a {
    text-decoration:none;
    
    }
    
    /*
    .image-item2{
    
    margin:10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    }
    
    .image-item2 img{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #12054a;
    }
    
    
    .image-item2 a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration:none;
    }
    
    .image-item2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    
    
    
    .image-item2 a {
    text-decoration: none;
    cursor: pointer;
    }
    
    .image-item2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
    }
    */
    /*
    .image-item2 {
    width: 150px;
    height: 150px;
    }
    
    .image-item2 a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration:none;
    }
    
    .image-item2 a {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    
    
    .image-item2 img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    border: 1px solid #12054a !important;
    }
    */
    /*
    .image-item2 {
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    background-color: #f7f7f7; /* Add a background color */
    padding: 10px; /* Add some padding */
    border-radius: 10px; /* Add a border radius */
    /*
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a box shadow */
    /* transition: transform 0.2s ease-in-out; /* Add a transition effect */
    /*
    box-shadow: 0 0 15px rgba(0,207,255,0.4);
    
    */
    
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    
    
    transition: 0.3s;
    }
    
    
    /*
    .image-item2 img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    border: 1px solid #12054a !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a box shadow to the image */
    }
    */
    .image-item2 a {
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 5px;
    /*
    transition: color 0.2s ease-in-out; /* Add a transition effect to the text */
    */
    }
    
    .image-item2 a:hover {
    color: purple; /* Change the text color on hover */
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    .image-item2, .image-item, .image-item3 {
    flex: 0 0 auto;
    text-align: center;
    background: #111;
    padding: 10px;
    border-radius: 12px;
    /*
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    transition: 0.3s;
    */
    width: 150px;
    }
    .song-item:hover, .artist-item:hover {
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.6);
    transform: translateY(-5px);
    }
    .song-item img, .artist-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #00CFFF;
    }
    .image-text {
    color: #00CFFF;
    font-weight: bold;
    margin-top: 8px;
    text-align: center;
    }
    
    .image-item2 img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #00CFFF;
    }
    .image-item2:hover, .image-item3:hover {
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.6);
    transform: translateY(-5px);
    }
    
    
    
    
    
    .image-item3 img  {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #00CFFF;
    }
    .image-item3:hover {
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.6);
    transform: translateY(-5px);
    }
    .image-item3 {
    flex: 0 0 auto;
    text-align: center;
    background: #111;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    transition: 0.3s;
    
    width: 150px;
    }
    
    
    
    
    .image-item3 a {
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 5px;
    /*
    transition: color 0.2s ease-in-out; /* Add a transition effect to the text */
    */
    }
    .me{
    margin:8px;
    color:#12054a;
    
    
    }
    .me2{
    color:#12054a;
    text-align:center;
    font-size:18px;
    margin-top:60px;
    
    }
    
    .image-item2{
    
    margin:10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    flex-shrink:0;
    }
    .image-item a{
    display:block;
    
    }
    
    
    
    
    
    /*style for the slides show*/
    
    
    .slideshow-container {
    position: relative;
    width: 100%;
    height: 300px; /* adjust the height as needed */
    overflow: hidden;
    background-image: linear-gradient(to bottom, #f7f7f7, #e7e7e7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
    position: relative;
    z-index: 1;
    
    }
    
    
    .slideshow-container {
    margin-top: calc(62px + 6px); /* adjust the margin top to match the navbar height and any additional padding */
    }
    
    .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 1s;
    }
    
    .slide.active {
    opacity: 1;
    z-index: 1;
    }
    
    .slide:not(.active) {
    opacity: 0;
    z-index: 0;
    }
    
    .slide img {
    width: 100%;
    height: 100%; /* adjust the height as needed */
    object-fit: cover;
    }
    
    .slide-button {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    
    padding: 10px 20px;
    
    
    border: none;
    
    cursor: pointer;
    
    padding: 10px 30px 10px 30px;
    border-radius: 20px;
    
    border: 0px;
    
    background: linear-gradient(to right, #08a9df, #12054a);
    color: #ffffff;
    }
    
    
    
    
    /* style for images and text on one line  ie  for recomended songs */
    .image-text-container {
    display: flex;
    align-items: center;
    background-image: linear-gradient(to bottom, , #5E72EB);
    }
    
    
    .image{
    width: 100px; /* adjust the width as needed */
    height: auto; /* adjust the height as needed */
    margin-right: 20px; /* adjust the margin as needed */
    border-radius:8px;
    border: 1px solid #12054a;
    
    
    }
    
    .image-text_container{
    
    display:flex;
    align-items:flex-start;
    }
    .image-text-container {
    display: flex;
    align-items: center;
    background-image: linear-gradient(to bottom, , #5E72EB);
    margin: 20px; /* add margin to create gap from the edges */
    }
    
    .image-text-container + .image-text-container {
    margin-top: 40px; /* add margin top to create gap between containers */
    }
    
    .text {
    font-size: 12px; /* adjust the font size as needed */
    font-family: Arial, sans-serif; /* adjust the font family as needed */
    margin-bottom:10px;
    color:ffffff;
    }
    .text-container{
    display:flex;
    flex-direction: column;
    
    }
    /* style for the song in the for you       */
    .container1 {
    width: 80%; /* adjust the width as needed */
    height: 400px; /* adjust the height as needed */
    margin: 40px auto; /* adjust the margin as needed */
    /* adjust the gradient colors as needed */
    border: 1px solid #ddd; /* adjust the border color and width as needed */
    border-radius: 10px; /* adjust the border radius as needed */
    /* adjust the box shadow as needed */
    position:relative;
    
    background: linear-gradient(to bottom, #f7f7f7, #e7e7e7);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    
    .centered-image {
    position: absolute; /* add this property */
    top: 40%; /* adjust the top position as needed */
    left: 50%; /* add this property */
    transform: translateX(-50%); /* add this property */
    width: 40%; /* adjust the width as needed */
    height: auto; /* add this property */
    border-radius: 40%; /* add this property */
    /* add this property */
    
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    
    
    .text1{
    font-size: 18px; /* adjust the font size as needed */
    font-family: Arial, sans-serif; /* adjust the font family as needed */
    text-align:center;
    margin-top:20px;
    color:black;
    }
    
    .text2{
    font-size: 18px; /* adjust the font size as needed */
    font-family: Arial, sans-serif; /* adjust the font family as needed */
    text-align:center;
    margin-top:12px;
    color:black;
    }
    /*
    .audio-player {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin: 20px auto;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    }
    
    .player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    }
    
    .play-pause-button,
    .stop-button,
    .mute-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    }
    
    .player-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    }
    
    .progress-bar {
    width: 70%;
    height: 10px;
    background-color: #ddd;
    border-radius: 10px;
    }
    
    .progress-fill {
    width: 50%; /* adjust the width as needed */
    
    /*
    height: 100%; /* add this property */
    /*
    background-color: #4CAF50; /* adjust the background color as needed */
    
    /*border-radius: 10px; /* adjust the border radius as needed */
    /*
    }
    
    .time-display {
    font-size: 16px; /* adjust the font size as needed */
    }
    /*
    .player-volume {
    display: flex; /* add this property */
    
    /*justify-content: space-between; /* add this property */
    
    /*align-items: center; /* add this property */
    
    /*margin-top: 20px; /* adjust the margin top as needed */
    }
    /*
    .player-volume input[type="range"] {
    width:
    
    }
    */
    /* style for the rotating image  */
    
    
    
    
    #rotating-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; /* adjust the size as needed */
    height: 100px; /* adjust the size as needed */
    border-radius: 40%;
    }
    .rotate {
    animation: rotate 2s linear infinite;
    }
    
    @keyframes rotate {
    0% {
    transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
    transform: translate(-50%, -50%) rotate(360deg);
    }
    }
    
    #rotating-image {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; /* adjust the size as needed */
    height: 100px; /* adjust the size as needed */
    border-radius: 40%;
    border:4px solid #6082B6;
    }
    
    /* style for recent uploads ie two images on the same line  */
    
    
    .picture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    
    .picture-row {
    display: flex;
    
    justify-content: space-around;
    
    
    align-items: center;
    margin-bottom: 20px;
    }
    
    .picture {
    width: 45%;
    /*
    border-radius: 8px;
    */
    overflow: hidden;
    
    }
    
    .picture img {
    width: 150px;
    height: 150px;
    }
    
    .recentimages{
    
    width: 150px;
    height: 150px;
    
    
    }
    
    .uto{
    text-align:center;
    font-family:serif;
    color:black;
    }
    .one{
    text-align:margin;
    margin:2px;
    font-size:25px;
    font-family:serif;
    color:#FFFFFF;
    }
    .onethree{
    text-align:margin;
    margin:8px;
    font-size:20px;
    font-family: sans serif;
    font-weight:bold;
    color:#12054a;
    }
    .meu{
    margin:8px;
    }
    
    
    .my-images {
    text-align: center;
    margin:40px auto;
    width: 80%;
    
    }
    
    /* adjust the height as needed */
    /* adjust the margin as needed */
    
    /*
    .my-images img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    
    
    max-width: 90%; 
    height:300px; 
    
    }
    */
    .my-images a {
    text-decoration: none;
    color: #333;
    font-size:18px;
    }
    .image-item a{
    
    text-decoration:none;
    
    
    }
    
    
    .some-words a {
    text-decoration: none;
    text-align:center;
    color:#fff;
    
    font-family:serif;
    font-size:18px;
    align-items:center;
    margin:4px;
    }
    .some-words {
    text-decoration: none;
    text-align:center;
    color:#fff;
    }
    .some-words a:hover{
    text-decoration:none;
    color:#00ccff;
    
    }
    .my-images p {
    font-size: 18px;
    margin-top: 10px;
    }
    .gradients{
    
    
    background-color: #f1f1f1;
    
    }
    
    .gradients2{
    
    
    background-color: #6082B6;
    
    }
    
    .gradient3{
    
    
    
    
    background-color:#111;
    /*
    border:1px solid #ddd;
    */
    border-radius:8px;
    }
    
    
    .lists{
    
    margin:12px;
    font-size:20px;
    padding:8px;
    color:#00CCFF;
    }
    .button5{
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 20px;
    background: linear-gradient(to right, #08a9df, #12054a);
    align-items:center;
    justify-content:center
    border: none;
    }
    
    .buttons{
    
    text-align:center;
    
    }
    
    
    .Card{
    background-color:#fff;
    color: #00CCff;
    text-align: center;
    font-size:18px;
    font-family:Arial,sans-serif;
    padding-bottom:20px;
    width:100%;
    
    }
    
    
    .profilecard{
    
    
    text-align: center;
    font-size:18px;
    
    padding-bottom:20px;
    width:100%;
    
    }
    .profilecard a{
    color:#00ccff;
    text-decoration:none;
    
    }
    
    .cardtext{
    color:#111;
    
    
    }
    
    .cardtext2{
    color:#111;
    
    
    }
    .Kevin{
    align-items: center;
    align-content: center;
    text-align: center;
    padding-bottom:30px;
    
    }
    .fa {
    padding: 10px;
    font-size: 20px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius:40%;
    }
    
    .fa:hover {
    opacity: 0.7;
    }
    
    .fa-facebook socials {
    background: #3B5998;
    color: white;
    }
    
    .fa-twitter socials{
    background: #55ACEE;
    color: white;
    }
    
    .fa-snapchat-ghost socials {
    background: #fffc00;
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    }
    
    .fa-youtube socials {
    background: #bb0000;
    color: white;
    }
    
    .fa-instagram socials{
    background: #50C878;
    color: white;
    }
    
    .Card a{
    
    text-decoration:none;
    color:#00ccff;
    
    
    }
    .Card a: hover{
    
    text-decoration:none;
    color:grey;
    
    
    }
    
    .founder-image img{
    border:2px solid #ffffff;
    border-radius:50%;
    text-align:center;
    width:100px;
    height:100px;
    
    }
    .founder-image{
    text-align:center;
    
    }
    
    
    /*
    
    .related-music-container {
    padding: 20px;
    margin: 20px;
    border-bottom: 4px solid #f1f1f1;
    border-radius:4px;
    }
    
    .image-text-play-container {
    display: flex;
    align-items: center;
    margin: 0 2px;
    }
    
    .related-music-image {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    margin-left: 2px;
    margin-right: 20px;
    
    /*
    border:1px  solid #4CAF50;
    
    */
    border:1px solid  #12054a;
    
    
    }
    */
    /*
    .text-play-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
    }
    
    .related-music-text {
    font-size: 14px;
    margin-right: 15px;
    }
    */
    
    
    
    
    /*
    .play-button {
    /*
    
    padding: 10px 30px;
    border: none;
    border-radius: 10px;
    background-color: #4CAF50;
    color: #ffffff;
    cursor: pointer;
    margin-left: auto;
    margin-right: 2px;
    */
    /*
    padding: 20px 20px;
    border: none;
    cursor: pointer;
    margin:10px auto;
    padding: 10px 30px;
    border-radius: 8px;
    /*
    
    margin-top:40px;
    */
    /*
    margin-right:2px:
    margin-left:auto;
    border: 0px;
    
    background: linear-gradient(to right, #08a9df, #12054a);
    
    
    
    color: #ffffff;
    
    }
    */
    
    
    
    
    
    
    /* Recommended Section */
    .related-music-texts {
    font-size: 30px;
    font-weight: bold;
    margin: 5px 10px 10px 10px;
    text-align: center;
    /*
    color: #00ccff;
    */
    text-shadow: 0 0 15px #08a9df;
    
    
    
    color: #00CFFF;
    
    
    }
    
    .related-music-container {
    background: rgba(17, 17, 17, 0.85);
    padding: 15px;
    margin: 15px;
    border-radius: 16px;
    border: 1px solid #08a9df44;
    box-shadow: 0 0 20px #08a9df22;
    transition: transform 0.4s, box-shadow 0.4s;
    animation: fadeIn 1s ease;
    }
    .related-music-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 25px #08a9df88, 0 0 50px #08a9df33;
    }
    
    .image-text-play-container {
    display: flex;
    align-items: center;
    }
    .related-music-image {
    width: 140px;
    height: 140px;
    border-radius: 14px;
    margin-right: 20px;
    object-fit: cover;
    border: 2px solid #08a9df;
    transition: transform 0.3s, box-shadow 0.3s;
    }
    .related-music-image:hover {
    transform: scale(1.07);
    box-shadow: 0 0 20px #08a9df;
    }
    .text-play-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    }
    .related-music-text {
    font-size: 10px;
    margin-right: 15px;
    color: #ffffff;
    line-height: 1.5;
    text-shadow: 0 0 10px #08a9df77;
    }
    
    
    
    /*
    
    .related-music-container .text-play-container a {
    margin-left: auto;
    margin-right: 2px;
    }
    
    */
    .download-button {
    margin-top: 20px;
    text-align: center;
    }
    
    .download-button button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    padding: 10px 30px 10px 30px;
    border-radius: 20px;
    background: linear-gradient(to right, #08a9df, #12054a);
    align-items: center;
    }
    
    .download-button button:hover {
    background-color: #3e8e41;
    }
    
    .related-music-container {
    margin: 2px; /* Add a 2px margin to the container */
    }
    
    .related-music-item {
    margin: 2px; /* Add a 2px margin to each item */
    }
    
    
    .related{
    
    font-size:25px;
    margin:2px;
    
    
    }
    .related-music-texts{
    font-size: 20px;
    font-family: Halvetica,sansserif;
    font-weight: bold;
    margin:20px;
    
    color:#00Ccff;
    }
    .onetwo{
    margin-bottom:40px;
    }
    
    .image-container6 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    
    border-radius:4px;
    
    }
    
    .image-item6 {
    margin: 10px;
    width: 150px; /* adjust the width as needed */
    height: 150px; /* adjust the height as needed */
    display: flex;
    flex-direction: column;
    border:2px solid #f1f1f1;
    border-radius:8px;
    
    }
    
    
    
    .image-part {
    width: 100%;
    height: 60%; /* increased the height to 80% */
    background-size: cover;
    background-position: center;
    }
    .image-part img{
    width: 100%;
    height: auto; /* increased the height to 80% */
    object-fit: cover;
    
    }
    .text-part {
    width: 100%;
    height: 40%; /* decreased the height to 20% */
    padding: 4px;
    background-color: #ffffff;
    }
    
    
    
    .social-sharing {
    margin-top: 0px;
    padding: 20px;
    
    
    border-radius:20px;
    border:none;
    
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
    border-bottom:none;
    }
    
    .social-sharing a {
    margin-right: 20px;
    }
    
    .social-sharing a:last-child {
    margin-right: 0;
    }
    
    .songnames{
    
    font-size:18px;
    padding:4px;
    }
    
    .artistname{
    
    font-size:15px;
    
    }
    
    .mysong{
    
    font-size:18px;
    
    color:#12054a;
    
    
    }
    
    .onefour{
    font-size:18px;
    text-align:center;
    color: #12054a;
    font-weight:bold;
    font-family:serif;
    }
    /*
    .urban-audio {
    width: 300px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .download-button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin:10px auto;
    }
    
    .download-button:hover {
    background-color: #3e8e41;
    }
    
    */
    
    .urban-audio {
    width: 300px;
    padding: 20px;
    
    /*
    border: 1px solid #12054a;
    */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    text-align: center;
    }
    .download-button {
    /*
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px auto;
    */
    
    
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin:10px auto;
    padding: 10px 20px;
    border-radius: 20px;
    
    border: 0px;
    
    background: linear-gradient(to right, #08a9df, #12054a);
    color: #ffffff;
    
    
    }
    
    .download-button:hover {
    background-color: #3e8e41;
    }
    .some-words {
    text-decoration: none;
    text-align:center;
    
    }
    .some-words a:hover{
    text-decoration:none;
    color:#00ccff;
    
    }
    .my-images p {
    font-size: 18px;
    margin-top: 10px;
    }
    
    .gradients5{
    background-color: #111;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    transition: 0.3s;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    margin: 0px;
    padding: 10px;
    box-sizing: border-box;
    }
    .greek-container {
    width: 250px;
    height: 250px;
    background-color: #ccc;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:2px solid #00ccff;
    /*
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    transition: 0.3s;
    */
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    transition: 0.3s;
    }
    .greek-container img {
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    transition: 0.3s;
    width: 60%;
    height: 75%;
    }
    .main-song{
    font-size:18px;
    }
    .song-words{
    text-align:center;
    margin-top:20px;
    
    }
    .urban-audio {
    margin-top:20px;
    }
    .download-button {
    margin-top:20px;
    text-align:center;
    }
    
    
    
    .download-button button {
    padding:10px 20px;
    border:none;
    border-radius:5px;
    background-color:#4CAF50;
    color:white;
    cursor:pointer;
    padding: 10px 30px 10px 30px;
    border-radius: 20px;
    background: linear-gradient(to right, #08a9df, #12054a);
    align-items:center;
    }
    .download-button button:hover {
    background-color:#3e8e41;
    }
    
    
    .submitbutton {
    /*
    margin-top:20px;
    margin:12px;
    border-radius:8px;
    */
    
    padding: 20px 20px;
    border: none;
    cursor: pointer;
    margin:10px auto;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top:40px;
    border: 0px;
    
    background: linear-gradient(to right, #08a9df, #12054a);
    color: #ffffff;
    
    }
    
    .submitbutton5 {
    /*
    margin-top:20px;
    margin:12px;
    border-radius:8px;
    */
    
    padding: 20px 20px;
    border: none;
    cursor: pointer;
    margin:10px auto;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top:40px;
    border: 0px;
    margin:20px;
    background: linear-gradient(to right, #08a9df, #12054a);
    color: #ffffff;
    }
    .center{
    width:300px;
    height:300px;
    border-radius:8px;
    border:2px solid #f1f1f1;
    
    }
    
    /*
    .image-grid {
    display: flex;
    justify-content: space-between;
    
    }
    */
    .image-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    }
    
    .image-grid img {
    width: 100%; /* adjust the width as needed */
    height: 150px; /* adjust the height as needed */
    object-fit: cover;
    border-radius: 8px;
    margin: 0;
    }
    
    
    .image-container60 {
    width: 100%;
    margin: 10px;
    border: 4px solid #f1f1f1;
    height: 350px;
    border-radius:8px;
    
    
    
    }
    
    .sameimage {
    height: 75%;
    background-size: 300px 300px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    
    width:200px;
    }
    
    .image-text60 {
    font-size: 12px;
    height: 25%;
    background-color: #f0f0f0;
    padding: 10px;
    margin:0px;
    overflow: hidden;
    border: 4px solid #f1f1f1;
    
    
    
    }
    
    .image-time {
    font-size: 8px;
    color: #666;
    
    }
    
    .image-time::before {
    content: "\25CF";
    font-size: 10px;
    color: #666;
    margin: 0px;
    }
    /*
    .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #ff0000;
    }
    */
    .image-text26{
    border-bottom: 4px solid #f1f1f1;
    
    
    padding:6px;
    font-size:5px;
    }
    
    
    .image-container6 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    
    border-radius:4px;
    
    }
    
    .image-item6 {
    margin: 10px;
    width: 100%; /* adjust the width as needed */
    height: 150px; /* adjust the height as needed */
    display: flex;
    flex-direction: column;
    border:2px solid #f1f1f1;
    border-radius:8px;
    
    }
    /*
    .gradients5 {
    background-image: linear-gradient(to bottom, #50C878, #f1f1f1;);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin: 20px;
    text-align: center;
    color: #f0f0f0;
    }
    
    .gradients5 h1, .gradients5 h2, .gradients5 p {
    color: #12054a;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .gradients5 img {
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin: 20px;
    }
    
    */
    .image-container60 a {
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    
    margin-top: 5px;
    
    transition: color 0.2s ease-in-out; /* Add a transition effect to the text */
    
    }
    
    .image-container60 a:hover {
    color: purple; /* Change the text color on hover */
    }
    
    
    
    .myaudioplayer{
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #00ccff;
    padding:0;
    margin:0;
    
    box-sizing: border-box;
    }
    
    .audio-player2 {
    width: 350px;
    max-width:150%;
    margin: 50px auto;
    padding: 20px;
    background-color: #111;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    transition: 0.3s;
    
    /*
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    */
    }
    
    .audio-player2 .cover-art {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .audio-player2 .audio-info {
    padding: 20px;
    }
    
    .audio-player2 .audio-info .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    }
    
    .audio-player2 .audio-info .artist {
    font-size: 16px;
    color: #666;
    }
    
    .audio-player2 .mycontrols {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .everything{
    font-family: Georgia, serif;
    
    
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.7;
    }
    .evrything h1, h2 {
    color: #fff;
    }
    .everything h1 {
    font-size: 2em;
    margin-bottom: 0.3em;
    }
    .everything h2 {
    font-size: 1.2em;
    margin-top: 1.5em;
    }
    .evrything p {
    margin-bottom: 1em;
    
    }
    .everything ul {
    margin-left: 1.5em;
    }
    .everything blockquote {
    border-left: 4px solid #ccc;
    margin: 1em 0;
    padding: 0.5em 1em;
    font-style: italic;
    color: #555;
    background: #ddd;
    }
    .audio-player2 .mycontrols button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    color: #333;
    border: none;
    cursor: pointer;
    
    transition: background-color 0.2s ease-in-out;
    
    }
    
    .audio-player2 .mycontrols button:hover {
    
    
    background-color: #ccc;
    
    
    }
    
    .audio-player2 .mycontrols .play-pause-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
    }
    
    .audio-player2 .myprogress-bar {
    width: 100%;
    height: 10px;
    background-color: #ccc;
    border-radius: 10px;
    overflow: hidden;
    }
    
    .audio-player2 .myprogress-bar .myprogress {
    width: 0%;
    height: 100%;
    background-color: #66ccff;
    transition: width 0.1s linear;
    }
    /*
    .audio-player2 .volume-mycontrol {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    
    .audio-player2 .volume-mycontrol input[type="range"] {
    width: 100px;
    height: 10px;
    background-color: #ccc;
    border-radius: 10px;
    overflow: hidden;
    -webkit-appearance: none;
    appearance: none;
    }
    
    .audio-player2 .volume-mycontrol input[type="range"]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background-color: #66ccff;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    }
    */
    .download-btn-bottom {
    
    /*
    width: 50%;
    padding: 10px 20px;
    /*
    background-color: #66ccff;
    
    
    color: #fff;
    */
    /*
    border: none;
    cursor: pointer;
    
    border-radius: 8px;
    margin:20px auto;
    align-items:center;
    background: linear-gradient(to right, #08a9df, #12054a);
    color: #ffffff;
    */
    
    /*
    padding: 20px 20px;
    border: none;
    cursor: pointer;
    margin:10px auto;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top:20px;
    border: 0px;
    margin:80px;
    background: linear-gradient(to right, #08a9df, #12054a);
    color: #ffffff;
    
    
    
    */
    
    
    position: relative;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    
    padding: 10px 20px;
    
    margin-top:50px;
    border: none;
    
    cursor: pointer;
    
    padding: 10px 30px 10px 30px;
    border-radius: 8px;
    
    border: 0px;
    
    background: linear-gradient(to right, #08a9df, #12054a);
    color: #ffffff;
    }
    
    Increase spacing between menu items */
    .menu-links a {
    margin-bottom: 10px; /* Increased from 20px */
    display: flex;
    align-items: center;
    gap: 18px; /* Increased space between icon and text */
    }
    
    /* Push the first link down a bit */
    .menu-links a:first-child {
    margin-top: 20px;
    }
    
    
    .vibestext p{
    
    color:#666;
    
    
    
    }
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    blockquote {
    border-left: 4px solid #e91e63;
    padding-left: 15px;
    font-style: italic;
    color: #757575;
    margin: 30px 0;
    }
    
    blockquote {
    border-left: 4px solid #e91e63;
    padding-left: 15px;
    font-style: italic;
    color: #757575;
    margin: 30px 0;
    }
    .giraffe, .kangaroo, .penguin {
    border-bottom: 1px solid #f1f1f1;
    width: 300px;
    margin: 0 auto;
    }
    
    .image-text5 {
    font-size: 14px;
    margin-top: 10px;
    }
    
    
    .social-sharing {
    margin: 20px;
    padding: 20px;
    background-color: ;
    
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .social-sharing a {
    margin-right: 20px;
    }
    
    .social-sharing a:last-child {
    margin-right: 0;
    }
    .socials .fa-facebook {
    /* background: #3B5998; */
    color: white;
    }
    
    .socials .fa-youtube {
    /* background: #3B5998; */
    color: white;
    }
    .socials .fa-twitter{
    /* background: #3B5998; */
    color: white;
    }
    
    .socials .fa-snapchat-ghost {
    /* background: #3B5998; */
    color: white;
    }
    .socials .fa-instagram {
    /* background: #3B5998; */
    color: white;
    }
    
    .posts{
    
    font-size:18px;
    text-align:center;
    margin-top:20px;
    color:#12054a;
    }
    
    .container10 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin:8px;
    }
    
    .paris {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    
    padding-bottom: 20px;
    }
    
    .imageparis  {
    width: 150px;
    height: 150px;
    margin-right: 20px;
    border: 1px solid #50C878;
    border-radius:8px;
    }
    
    .description {
    font-size: 16px;
    }
    .onefive{
    
    font-size:22px;
    font-weight:bold;
    color:#00ccff;
    }
    
    
    .mygradient{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    }
    header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    }
    nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    }
    nav li {
    margin-right: 20px;
    }
    nav a {
    color: #333;
    text-decoration: none;
    }
    .blog-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .blog-post {
    margin-bottom: 40px;
    }
    .blog-post h2 {
    margin-top: 15px;
    }
    .blog-post p {
    margin-bottom: 20px;
    
    }
    
    
    
    
    .social-links {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    }
    
    .social-link {
    margin: 0 10px;
    font-size: 24px;
    }
    
    .myicons a{
    text-decoration:none;
    
    }
    
    .flex-containerbluetick {
    display: flex;
    padding:10px;
    align-items:center;
    }
    
    .flex-containerbluetick img {
    margin-left: 5px; /* Optional: adds some space between the word and image */
    width:20px;
    height:20px;
    border-radius:50%;
    object-fit:cover;
    border:none;
    background-color:#FFFFFF;
    }
    
    .flex-containerbluetick2 img {
    margin-left: 5px; /* Optional: adds some space between the word and image */
    width:20px;
    height:20px;
    border-radius:50%;
    object-fit:cover;
    border:none;
    background-color:#FFFFFF;
    
    }
    .mysocials2{
    border:none;
    
    }
    
    
    .top-songs, .featured-artists {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px;
    scroll-behavior: smooth;
    }
    .top-songs::-webkit-scrollbar, .featured-artists::-webkit-scrollbar {
    display: none;
    }
    .song-item, .artist-item {
    flex: 0 0 auto;
    text-align: center;
    background: #111;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
    transition: 0.3s;
    width: 150px;
    }
    .song-item:hover, .artist-item:hover {
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.6);
    transform: translateY(-5px);
    }
    .song-item img, .artist-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #00CFFF;
    }
    
    .play-button8 {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #08a9df, #12054a);
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #08a9df88;
    animation: pulse 2s infinite;
    letter-spacing: 1px;
    }
    .play-button8:hover {
    background: linear-gradient(135deg, #ffffff, #08a9df);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 30px #08a9df;
    }
    @keyframes pulse {
    0% { box-shadow: 0 0 10px #08a9df66; }
    50% { box-shadow: 0 0 20px #08a9dfaa; }
    100% { box-shadow: 0 0 10px #08a9df66; }
    }
    h1, h2, h3 {
    color: #00CFFF;
    margin: 8px;
    
    }
    p {
    color: #ccc;
    margin: 10px 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    }
    .menu-links a:hover {
    color: #fff;
    }
    
    }
   
   
   
 
   @media (prefers-color-scheme: light) {
   
   
   
   .everything .theblog-container {
   max-width: 800px;
   margin-left: 0px;
   background-color:#fff;
   }
   
   .blog-header {
   display: flex;
   align-items: center;
   margin-bottom: 30px;
   border-bottom: 1px solid #ddd;
   padding-bottom: 20px;
   background-color:#fff;
   
   }
   
   .author-img {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 20px;
   }
   
   .author-info {
   display: flex;
   flex-direction: column;
   }
   
   .author-name {
   margin: 0;
   font-size: 1.5rem;
   font-weight: bold;
   }
   
   .update-date {
   margin: 5px 0 0;
   font-size: 0.9rem;
   color: #666;
   }
   
   .blog-post {
   line-height: 1.6;
   }
   
   .post-title {
   font-size: 2rem;
   margin-bottom: 10px;
   }
   
   .post-content {
   font-size: 1.1rem;
   }
   
   
  
  .mybottom p{
   
   
   color:#111;
   
   }
   
   
   body {
   font-family: Arial, sans-serif;
   background-color: #fff;
   color: #111;
   margin: 0;
   padding: 0;
   }
   
   .container {
   max-width: 900px;
   margin: auto;
   padding: 40px 20px;
   background-color: #f9f9f9;
   }
   
   h1 {
   text-align: center;
   color: #00796b;
   margin-bottom: 30px;
   }
   
   h2 {
   color: #009688;
   margin-top: 25px;
   }
   
   p {
   line-height: 1.7;
   margin-bottom: 20px;
   color: #333;
   }
   
   blockquote {
   border-left: 4px solid #26c6da;
   padding-left: 15px;
   font-style: italic;
   color: #555;
   margin: 30px 0;
   }
   
   footer {
   text-align: center;
   padding: 20px;
   font-size: 0.9em;
   color: #666;
   }
   
   /* Navbar */
   .navbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 20px;
   background: #f1f1f1;
   position: fixed;
   top: 0;
   width: 100%;
   height: 60px;
   z-index: 3000;
   }
   
   .bar {
   background: #007acc;
   }
   
   .search-icon {
   color: #007acc;
   }
   
   .search-input {
   background-color: #fff;
   color: #333;
   border: 1px solid #ccc;
   }
   
   .menu-links {
   background: #fff;
   color: #000;
   }
   
   .menu-links a {
   color: #007acc;
   }
   
   .bottom-nav {
   background: #f1f1f1;
   }
   
   .bottom-nav i {
   color: #007acc;
   }
   
   .bottom-nav i:hover {
   color: #000;
   }
   
   .top-songs, .featured-artists {
   background: #fafafa;
   }
   
   .song-item, .artist-item {
   background: #fff;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   border: 1px solid #ddd;
   }
   
   .song-item img, .artist-item img {
   border: 3px solid #007acc;
   }
   
   .image-text {
   color: #007acc;
   }
   
   .image-item2, .image-item, .image-item3 {
   background: #fff;
   border: 1px solid #ddd;
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   }
   
   .image-item2 img, .image-item3 img {
   border: 2px solid #007acc;
   }
   
   .image-item2:hover, .image-item3:hover {
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
   }
   
   .image-text-container {
   background: #f0f8ff;
   }
   
   .text {
   color: #333;
   }
   
   .container1 {
   background: linear-gradient(to bottom, #fff, #eee);
   border: 1px solid #ccc;
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   }
   
   .centered-image {
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   }
   
   .text1, .text2 {
   color: #111;
   }
   
   .related-music-container {
   background: rgba(255, 255, 255, 0.95);
   border: 1px solid #ccc;
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   }
   
   .related-music-text {
   color: #333;
   text-shadow: none;
   }
   
   .related-music-texts {
   color: #007acc;
   text-shadow: none;
   }
   
   .related-music-image {
   border: 2px solid #007acc;
   }
   
   .related-music-image:hover {
   box-shadow: 0 0 10px rgba(0,0,0,0.2);
   }
   
   .download-button button,
   .submitbutton,
   .submitbutton5,
   .download-btn-bottom {
   background: linear-gradient(to right, #2196F3, #00BCD4);
   color: #fff;
   }
   
   .download-button button:hover {
   background-color: #1976D2;
   }
   
   .gradients5 {
   background-color: #fff;
   box-shadow: 0 0 10px rgba(0,0,0,0.05);
   }
   
   .greek-container {
   background-color: #eee;
   border: 2px solid #007acc;
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   }
   
   .greek-container img {
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   }
   
   .audio-player2 {
   background-color: #fff;
   color: #000;
   box-shadow: 0 0 10px rgba(0,0,0,0.1);
   }
   
   .audio-player2 .mycontrols button {
   background-color: #eee;
   color: #333;
   }
   
   .audio-player2 .myprogress-bar {
   background-color: #ccc;
   }
   
   .audio-player2 .myprogress-bar .myprogress {
   background-color: #2196F3;
   }
   
   .one, .onefour, .onethree, .posts, .mysong {
   color: #007acc;
   }
   
   .everything h1, .everything h2 {
   color: #222;
   }
   .everything p{
   
   
   color:#111;
   
   }
   .everything blockquote {
   background: #f9f9f9;
   color: #555;
   }
   
   .social-sharing {
   background-color: #f1f1f1;
   }
   
  
   
   /* --- Navbar --- */
   .navbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 20px;
   background: #ffffff;
   border-bottom: 1px solid #ccc;
   position: fixed;
   top: 0;
   width: 100%;
   height: 60px;
   z-index: 3000;
   }
   
   .nav-left,
   .nav-right {
   display: flex;
   align-items: center;
   gap: 10px;
   }
   
   .hamburger {
   width: 30px;
   height: 20px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   cursor: pointer;
   }
   
   .bar {
   height: 3px;
   width: 100%;
   background: #007acc;
   border-radius: 5px;
   transition: all 0.3s ease;
   }
   
   .logo-img {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   object-fit: cover;
   }
   
   .search-container {
   display: flex;
   align-items: center;
   position: relative;
   }
   
   .search-icon {
   font-size: 24px;
   color: #007acc;
   cursor: pointer;
   }
   
   .search-input {
   display: none;
   height: 30px;
   border: 1px solid #ccc;
   background-color: #fff;
   color: #333;
   border-radius: 20px;
   padding: 5px 10px;
   outline: none;
   margin-left: 10px;
   transition: width 0.3s ease;
   }
   
   .search-input.active {
   display: block;
   width: 180px;
   }
   
   /* --- Menu --- */
   .menu-links {
   position: fixed;
   top: 60px;
   left: -100%;
   width: 100%;
   height: calc(100vh - 60px);
   background-color: #f9f9f9;
   color: #111;
   display: flex;
   flex-direction: column;
   padding: 40px 20px;
   transition: left 0.4s ease;
   z-index: 2500;
   padding-top: 10px;
   }
   
   .menu-links.active {
   left: 0;
   }
   
   .menu-links a {
   color: #007acc;
   text-decoration: none;
   font-size: 20px;
   margin: 10px 0;
   display: flex;
   align-items: center;
   gap: 18px;
   }
   
   .menu-links a:hover {
   color: #005999;
   }
   
   .menu-links a:first-child {
   margin-top: 20px;
   }
   
   /* --- Bottom Navigation --- */
   .bottom-nav {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #ffffff;
   border-top: 1px solid #ccc;
   display: flex;
   justify-content: space-around;
   align-items: center;
   height: 60px;
   z-index: 1000;
   }
   
   .bottom-nav i {
   font-size: 24px;
   color: #007acc;
   transition: color 0.3s;
   cursor: pointer;
   }
   
   .bottom-nav i:hover {
   color: #000;
   }
   
   }
   
   @media (prefers-color-scheme: light) {
   
   .mybottom p {
   
   color:#111;
   
   }
   
   .everything p{
   
   color:#111;
   
   
   }
   /* --- Navbar --- */
   .navbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 20px;
   background: #ffffff;
   border-bottom: 1px solid #ccc;
   position: fixed;
   top: 0;
   width: 100%;
   height: 60px;
   z-index: 3000;
   }
   
   .nav-left,
   .nav-right {
   display: flex;
   align-items: center;
   gap: 10px;
   }
   
   .hamburger {
   width: 30px;
   height: 20px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   cursor: pointer;
   }
   
   .bar {
   height: 3px;
   width: 100%;
   background: #007acc;
   border-radius: 5px;
   transition: all 0.3s ease;
   }
   
   .logo-img {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   object-fit: cover;
   }
   
   .search-container {
   display: flex;
   align-items: center;
   position: relative;
   }
   
   .search-icon {
   font-size: 24px;
   color: #007acc;
   cursor: pointer;
   }
   
   .search-input {
   display: none;
   height: 30px;
   border: 1px solid #ccc;
   background-color: #fff;
   color: #333;
   border-radius: 20px;
   padding: 5px 10px;
   outline: none;
   margin-left: 10px;
   transition: width 0.3s ease;
   }
   
   .search-input.active {
   display: block;
   width: 180px;
   }
   
   /* --- Menu --- */
   .menu-links {
   position: fixed;
   top: 60px;
   left: -100%;
   width: 100%;
   height: calc(100vh - 60px);
   background-color: #f9f9f9;
   color: #111;
   display: flex;
   flex-direction: column;
   padding: 40px 20px;
   transition: left 0.4s ease;
   z-index: 2500;
   padding-top: 10px;
   }
   
   .menu-links.active {
   left: 0;
   }
   
   .menu-links a {
   color: #007acc;
   text-decoration: none;
   font-size: 20px;
   margin: 10px 0;
   display: flex;
   align-items: center;
   gap: 18px;
   }
   
   .menu-links a:hover {
   color: #005999;
   }
   
   .menu-links a:first-child {
   margin-top: 20px;
   }
   
   /* --- Bottom Navigation --- */
   .bottom-nav {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #ffffff;
   border-top: 1px solid #ccc;
   display: flex;
   justify-content: space-around;
   align-items: center;
   height: 60px;
   z-index: 1000;
   }
   
   .bottom-nav i {
   font-size: 24px;
   color: #007acc;
   transition: color 0.3s;
   cursor: pointer;
   }
   
   .bottom-nav i:hover {
   color: #000;
   }
   
   
   
   
   
   .thecard {
   background: white;
   width: 320px;
   border-radius: 20px;
   box-shadow: 0 10px 20px rgba(0,0,0,0.1);
   overflow: visible; /* allow image to overflow */
   position: relative;
   margin-top:80px; 
   
   }
   
   .header {
   background-color: #035c75;
   padding: 70px 20px 20px;
   position: relative;
   color: white;
   border-top-left-radius: 20px;
   border-top-right-radius: 20px;
   }
   
   .profile-pic {
   width: 100px;
   height: 100px;
   border-radius: 50%;
   border: 5px solid white;
   position: absolute;
   top: -30px;
   left: 20px;
   object-fit: cover;
   background: white;
   }
   
   .name {
   font-size: 1.5em;
   font-weight: bold;
   line-height: 1.2em;
   margin-top: -40px;
   text-align: right;
   margin-right:5px;
   }
   
   .content {
   padding: 20px;
   font-size: 0.95em;
   color: #111 !important;
   line-height: 1.6;
   
   
   }
   
   
   
   
   
   
   .everything .theblog-container {
   max-width: 800px;
   margin-left: 0px;
   background-color:#fff;
   }
   
   .blog-header {
   display: flex;
   align-items: center;
   margin-bottom: 30px;
   border-bottom: 1px solid #ddd;
   padding-bottom: 20px;
   
   background-color:#fff;
   }
   
   .author-img {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 20px;
   }
   
   .author-info {
   display: flex;
   flex-direction: column;
   }
   
   .author-name {
   margin: 0;
   font-size: 1.5rem;
   font-weight: bold;
   }
   
   .update-date {
   margin: 5px 0 0;
   font-size: 0.9rem;
   color: #666;
   }
   
   .blog-post {
   line-height: 1.6;
   }
   
   .post-title {
   font-size: 2rem;
   margin-bottom: 10px;
   }
   
   .post-content {
   font-size: 1.1rem;
   }
   
   
   .everything .theblog-container {
   max-width: 800px;
   margin-left: 0px;
   background-color:#fff;
   }
   
   .blog-header {
   display: flex;
   align-items: center;
   margin-bottom: 30px;
   border-bottom: 1px solid #ddd;
   padding-bottom: 20px;
   background-color:#fff;
   
   }
   
   .author-img {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 20px;
   border:1px solid #111;
   
   }
   
   .author-info {
   display: flex;
   flex-direction: column;
   }
   
   .author-name {
   margin: 0;
  
   font-weight: bold;
   color:#111;
   font-size:15px;
   }
   
   .update-date {
   margin: 5px 0 0;
   font-size: 0.9rem;
   color: #666;
   }
   
   .blog-post {
   line-height: 1.6;
   }
   
   .post-title {
   font-size: 2rem;
   margin-bottom: 10px;
   }
   
   .post-content {
   font-size: 1.1rem;
   }
   
   
   
   
   
   }
   
   
   
   
   
   @media screen and (min-width: 1024px) {
   
   /* NAVIGATION */
   .navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 40px;
   height: 70px;
   }
   
   .nav-left {
   font-size: 1.8rem;
   }
   
   .menu-links {
   display: flex !important;
   flex-direction: row;
   gap: 30px;
   }
   
   .menu-links a {
   font-size: 1.2rem;
   }
   
   .hamburger,
   .bottom-nav {
   display: none;
   }
   
   /* SLIDESHOW */
   .slideshow-container {
   height: 450px;
   }
   
   .slide {
   width: 100%;
   height: 100%;
   transition: opacity 1s;
   }
   
   .slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   }
   
   .slide-button {
   font-size: 18px;
   padding: 12px 36px;
   }
   
   /* GRADIENT SECTIONS */
   .gradient4,
   .gradients5,
   .mygradient {
   padding: 40px 20px;
   text-align: center;
   }
   
   /* BLOG HEADER + TITLES */
   .posts,
   .onefive,
   .onesix,
   .cardtext,
   .cardtext2 {
   font-size: 2rem;
   color: #00CFFF;
   text-align: center;
   margin: 30px 0 20px;
   }
   
   /* BLOG TEXT BODY */
   .textbody {
   max-width: 1000px;
   margin: 0 auto;
   padding: 30px;
   font-size: 18px;
   line-height: 1.8;
   }
   
   .textbody p {
   margin-bottom: 1em;
   }
   
   .lists {
   font-size: 18px;
   text-align: center;
   margin: 20px;
   }
   
   .blog-post {
   margin-bottom: 40px;
   }
   
   /* CARD SECTIONS */
   .Card {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .profilecard {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .Kevin {
   padding: 20px;
   text-align: center;
   }
   
   .founder-image img {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   }
   
   /* AUDIO PLAYER */
   .audio-player2,
   .myaudioplayer {
   width: 600px;
   margin: 40px auto;
   padding: 30px;
   }
   
   .audio-player2 .mycontrols button,
   .myaudioplayer .mycontrols button {
   width: 50px;
   height: 50px;
   font-size: 20px;
   }
   
   .audio-player2 .play-pause-btn,
   .myaudioplayer .play-pause-btn {
   width: 70px;
   height: 70px;
   font-size: 28px;
   }
   
   /* BUTTONS */
   .button5,
   .submitbutton,
   .submitbutton5,
   .download-button button,
   .download-btn-bottom {
   font-size: 18px;
   padding: 12px 36px;
   border-radius: 10px;
   background-color: #00CFFF;
   color: white;
   border: none;
   cursor: pointer;
   display: block;
   margin: 20px auto;
   }
   
   /* SOCIAL ICONS */
   .myicons,
   .social-sharing i {
   font-size: 24px;
   margin: 0 10px;
   color: #00CFFF;
   }
   
   /* IMAGE GRIDS */
   .image-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 20px;
   padding: 30px;
   }
   
   .image-container60 {
   border: 4px solid #00CFFF;
   border-radius: 12px;
   overflow: hidden;
   }
   
   .sameimage {
   height: 220px;
   background-size: cover;
   background-position: center;
   }
   
   .image-text60,
   .image-text26,
   .image-time {
   font-size: 14px;
   padding: 10px;
   text-align: center;
   }
   
   .image-container6 {
   display: flex;
   gap: 20px;
   overflow-x: auto;
   padding: 20px 0;
   }
   
   .image-item6 {
   min-width: 200px;
   flex-shrink: 0;
   }
   
   /* FLEX IMAGE+TEXT BLOCK */
   .paris,
   .image-text-container {
   display: flex;
   gap: 20px;
   align-items: center;
   margin: 30px auto;
   max-width: 1000px;
   }
   
   .image {
   width: 140px;
   height: 140px;
   border-radius: 10px;
   object-fit: cover;
   }
   
   .imageparis {
   width: 200px;
   height: 200px;
   border-radius: 12px;
   object-fit: cover;
   }
   
   .text-container {
   flex: 1;
   }
   
   /* WRAPPERS */
   .container10,
   .blog-container {
   max-width: 1100px;
   margin: 0 auto;
   padding: 30px;
   }
   
   .bar {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   padding: 20px 0;
   }
   
   .my-images,
   .myimages {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
   margin-top: 40px;
   }
   
   }
   
   
   @media screen and (min-width: 1024px) {
   
   /* NAVIGATION */
   .navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 40px;
   height: 70px;
   }
   
   .nav-left {
   font-size: 2rem;
   }
   
   .menu-links {
   display: flex !important;
   flex-direction: row;
   gap: 30px;
   }
   
   .menu-links a {
   font-size: 1.2rem;
   }
   
   .hamburger,
   .bottom-nav {
   display: none;
   }
   
   /* HEADER + GRADIENTS */
   .gradient4,
   .mygradient {
   padding: 40px 20px;
   text-align: center;
   }
   
   .logo-img {
   height: 60px;
   }
   
   /* TITLES & LABELS */
   .cardtext,
   .cardtext2,
   .lists,
   .onefive {
   font-size: 2rem;
   color: #00CFFF;
   text-align: center;
   margin: 30px 0;
   }
   
   .onesix {
   margin-top: 40px;
   text-align: center;
   font-size: 22px;
   font-weight: bold;
   color: #12054a;
   }
   
   /* TEXT BODY */
   .mybodytext,
   .mybodytext2,
   .description {
   font-size: 18px;
   max-width: 900px;
   margin: 30px auto;
   text-align: center;
   line-height: 1.8;
   }
   
   /* CARDS */
   .Card {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .profilecard {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .Kevin {
   padding: 20px;
   text-align: center;
   }
   
   .founder-image img {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   }
   
   /* IMAGE GRID */
   .image-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 20px;
   padding: 30px;
   }
   
   .image-container60 {
   border: 4px solid #00CFFF;
   border-radius: 12px;
   overflow: hidden;
   }
   
   .sameimage {
   height: 220px;
   background-size: cover;
   background-position: center;
   }
   
   .image-text60,
   .image-text26,
   .image-time {
   font-size: 14px;
   padding: 10px;
   text-align: center;
   }
   
   .imageparis {
   width: 200px;
   height: 200px;
   object-fit: cover;
   border-radius: 12px;
   margin: 20px auto;
   display: block;
   }
   
   /* HORIZONTAL IMAGE SCROLL */
   .image-container6 {
   display: flex;
   overflow-x: auto;
   gap: 16px;
   padding: 20px;
   border-radius: 8px;
   }
   
   .image-item6 {
   min-width: 220px;
   height: 160px;
   flex-shrink: 0;
   border: 2px solid #f1f1f1;
   border-radius: 8px;
   }
   
   /* SOCIAL ICONS */
   .myicons {
   display: flex;
   justify-content: center;
   gap: 16px;
   margin: 30px 0;
   }
   
   .myicons i {
   font-size: 24px;
   color: #00CFFF;
   }
   
   /* BUTTONS */
   .button5,
   .submitbutton,
   .submitbutton5 {
   font-size: 18px;
   padding: 12px 36px;
   background-color: #00CFFF;
   color: white;
   border: none;
   border-radius: 10px;
   cursor: pointer;
   display: block;
   margin: 20px auto;
   }
   
   /* CONTAINERS */
   .container10 {
   max-width: 1100px;
   margin: 0 auto;
   padding: 30px;
   }
   
   .bar {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   padding: 20px 0;
   }
   
   }
   
   @media screen and (min-width: 1024px) {
   
   /* NAVIGATION */
   .navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 40px;
   height: 70px;
   }
   
   .nav-left {
   font-size: 2rem;
   }
   
   .menu-links {
   display: flex !important;
   flex-direction: row;
   gap: 30px;
   }
   
   .menu-links a {
   font-size: 1.2rem;
   }
   
   .hamburger,
   .bottom-nav {
   display: none;
   }
   
   /* HEADER + GRADIENTS */
   .gradient4,
   .mygradient {
   padding: 40px 20px;
   text-align: center;
   }
   
   .logo-img {
   height: 60px;
   }
   
   /* TITLES & LABELS */
   .cardtext,
   .cardtext2,
   .lists,
   .onefive {
   font-size: 2rem;
   color: #00CFFF;
   text-align: center;
   margin: 30px 0;
   }
   
   .onesix {
   margin-top: 40px;
   text-align: center;
   font-size: 22px;
   font-weight: bold;
   color: #12054a;
   }
   
   /* TEXT BODY */
   .mybodytext,
   .mybodytext2,
   .description {
   font-size: 18px;
   max-width: 900px;
   margin: 30px auto;
   text-align: center;
   line-height: 1.8;
   }
   
   /* CARDS */
   .Card {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .profilecard {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .Kevin {
   padding: 20px;
   text-align: center;
   }
   
   .founder-image img {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   }
   
   /* IMAGE GRID */
   .image-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 20px;
   padding: 30px;
   }
   
   .image-container60 {
   border: 4px solid #00CFFF;
   border-radius: 12px;
   overflow: hidden;
   }
   
   .sameimage {
   height: 220px;
   background-size: cover;
   background-position: center;
   }
   
   .image-text60,
   .image-text26,
   .image-time {
   font-size: 14px;
   padding: 10px;
   text-align: center;
   }
   
   .imageparis {
   width: 200px;
   height: 200px;
   object-fit: cover;
   border-radius: 12px;
   margin: 20px auto;
   display: block;
   }
   
   /* HORIZONTAL IMAGE SCROLL */
   .image-container6 {
   display: flex;
   overflow-x: auto;
   gap: 16px;
   padding: 20px;
   border-radius: 8px;
   }
   
   .image-item6 {
   min-width: 220px;
   height: 160px;
   flex-shrink: 0;
   border: 2px solid #f1f1f1;
   border-radius: 8px;
   }
   
   /* SOCIAL ICONS */
   .myicons {
   display: flex;
   justify-content: center;
   gap: 16px;
   margin: 30px 0;
   }
   
   .myicons i {
   font-size: 24px;
   color: #00CFFF;
   }
   
   /* BUTTONS */
   .button5,
   .submitbutton,
   .submitbutton5 {
   font-size: 18px;
   padding: 12px 36px;
   background-color: #00CFFF;
   color: white;
   border: none;
   border-radius: 10px;
   cursor: pointer;
   display: block;
   margin: 20px auto;
   }
   
   /* CONTAINERS */
   .container10 {
   max-width: 1100px;
   margin: 0 auto;
   padding: 30px;
   }
   
   .bar {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   padding: 20px 0;
   }
   
   
   
   /* Increase spacing between menu items */
   .menu-links a {
   margin-bottom: 10px; /* Increased from 20px */
   display: flex;
   align-items: center;
   gap: 18px; /* Increased space between icon and text */
   }
   
   /* Push the first link down a bit */
   .menu-links a:first-child {
   margin-top: 20px;
   }
   
   
   .vibestext p{
   
   color:#666;
   
   
   
   }
   * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   }
   
   
   
   @media screen and (min-width: 1024px) {
   
   /* NAVIGATION */
   .navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 40px;
   height: 70px;
   }
   
   .nav-left {
   font-size: 1.8rem;
   }
   
   .menu-links {
   display: flex !important;
   flex-direction: row;
   gap: 30px;
   }
   
   .menu-links a {
   font-size: 1.2rem;
   }
   
   .hamburger,
   .bottom-nav {
   display: none;
   }
   
   /* SLIDESHOW */
   .slideshow-container {
   height: 450px;
   }
   
   .slide {
   width: 100%;
   height: 100%;
   transition: opacity 1s;
   }
   
   .slide img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   }
   
   .slide-button {
   font-size: 18px;
   padding: 12px 36px;
   }
   
   /* GRADIENT SECTIONS */
   .gradient4,
   .gradients5,
   .mygradient {
   padding: 40px 20px;
   text-align: center;
   }
   
   /* BLOG HEADER + TITLES */
   .posts,
   .onefive,
   .onesix,
   .cardtext,
   .cardtext2 {
   font-size: 2rem;
   color: #00CFFF;
   text-align: center;
   margin: 30px 0 20px;
   }
   
   /* BLOG TEXT BODY */
   .textbody {
   max-width: 1000px;
   margin: 0 auto;
   padding: 30px;
   font-size: 18px;
   line-height: 1.8;
   }
   
   .textbody p {
   margin-bottom: 1em;
   }
   
   .lists {
   font-size: 18px;
   text-align: center;
   margin: 20px;
   }
   
   .blog-post {
   margin-bottom: 40px;
   }
   
   /* CARD SECTIONS */
   .Card {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .profilecard {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .Kevin {
   padding: 20px;
   text-align: center;
   }
   
   .founder-image img {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   }
   
   /* AUDIO PLAYER */
   .audio-player2,
   .myaudioplayer {
   width: 600px;
   margin: 40px auto;
   padding: 30px;
   }
   
   .audio-player2 .mycontrols button,
   .myaudioplayer .mycontrols button {
   width: 50px;
   height: 50px;
   font-size: 20px;
   }
   
   .audio-player2 .play-pause-btn,
   .myaudioplayer .play-pause-btn {
   width: 70px;
   height: 70px;
   font-size: 28px;
   }
   
   /* BUTTONS */
   .button5,
   .submitbutton,
   .submitbutton5,
   .download-button button,
   .download-btn-bottom {
   font-size: 18px;
   padding: 12px 36px;
   border-radius: 10px;
   background-color: #00CFFF;
   color: white;
   border: none;
   cursor: pointer;
   display: block;
   margin: 20px auto;
   }
   
   /* SOCIAL ICONS */
   .myicons,
   .social-sharing i {
   font-size: 24px;
   margin: 0 10px;
   color: #00CFFF;
   }
   
   /* IMAGE GRIDS */
   .image-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 20px;
   padding: 30px;
   }
   
   .image-container60 {
   border: 4px solid #00CFFF;
   border-radius: 12px;
   overflow: hidden;
   }
   
   .sameimage {
   height: 220px;
   background-size: cover;
   background-position: center;
   }
   
   .image-text60,
   .image-text26,
   .image-time {
   font-size: 14px;
   padding: 10px;
   text-align: center;
   }
   
   .image-container6 {
   display: flex;
   gap: 20px;
   overflow-x: auto;
   padding: 20px 0;
   }
   
   .image-item6 {
   min-width: 200px;
   flex-shrink: 0;
   }
   
   /* FLEX IMAGE+TEXT BLOCK */
   .paris,
   .image-text-container {
   display: flex;
   gap: 20px;
   align-items: center;
   margin: 30px auto;
   max-width: 1000px;
   }
   
   .image {
   width: 140px;
   height: 140px;
   border-radius: 10px;
   object-fit: cover;
   }
   
   .imageparis {
   width: 200px;
   height: 200px;
   border-radius: 12px;
   object-fit: cover;
   }
   
   .text-container {
   flex: 1;
   }
   
   /* WRAPPERS */
   .container10,
   .blog-container {
   max-width: 1100px;
   margin: 0 auto;
   padding: 30px;
   }
   
   .bar {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   padding: 20px 0;
   }
   
   .my-images,
   .myimages {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
   margin-top: 40px;
   }
   
   }
   
   
   @media screen and (min-width: 1024px) {
   
   /* NAVIGATION */
   .navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 40px;
   height: 70px;
   }
   
   .nav-left {
   font-size: 2rem;
   }
   
   .menu-links {
   display: flex !important;
   flex-direction: row;
   gap: 30px;
   }
   
   .menu-links a {
   font-size: 1.2rem;
   }
   
   .hamburger,
   .bottom-nav {
   display: none;
   }
   
   /* HEADER + GRADIENTS */
   .gradient4,
   .mygradient {
   padding: 40px 20px;
   text-align: center;
   }
   
   .logo-img {
   height: 60px;
   }
   
   /* TITLES & LABELS */
   .cardtext,
   .cardtext2,
   .lists,
   .onefive {
   font-size: 2rem;
   color: #00CFFF;
   text-align: center;
   margin: 30px 0;
   }
   
   .onesix {
   margin-top: 40px;
   text-align: center;
   font-size: 22px;
   font-weight: bold;
   color: #12054a;
   }
   
   /* TEXT BODY */
   .mybodytext,
   .mybodytext2,
   .description {
   font-size: 18px;
   max-width: 900px;
   margin: 30px auto;
   text-align: center;
   line-height: 1.8;
   }
   
   /* CARDS */
   .Card {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .profilecard {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .Kevin {
   padding: 20px;
   text-align: center;
   }
   
   .founder-image img {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   }
   
   /* IMAGE GRID */
   .image-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 20px;
   padding: 30px;
   }
   
   .image-container60 {
   border: 4px solid #00CFFF;
   border-radius: 12px;
   overflow: hidden;
   }
   
   .sameimage {
   height: 220px;
   background-size: cover;
   background-position: center;
   }
   
   .image-text60,
   .image-text26,
   .image-time {
   font-size: 14px;
   padding: 10px;
   text-align: center;
   }
   
   .imageparis {
   width: 200px;
   height: 200px;
   object-fit: cover;
   border-radius: 12px;
   margin: 20px auto;
   display: block;
   }
   
   /* HORIZONTAL IMAGE SCROLL */
   .image-container6 {
   display: flex;
   overflow-x: auto;
   gap: 16px;
   padding: 20px;
   border-radius: 8px;
   }
   
   .image-item6 {
   min-width: 220px;
   height: 160px;
   flex-shrink: 0;
   border: 2px solid #f1f1f1;
   border-radius: 8px;
   }
   
   /* SOCIAL ICONS */
   .myicons {
   display: flex;
   justify-content: center;
   gap: 16px;
   margin: 30px 0;
   }
   
   .myicons i {
   font-size: 24px;
   color: #00CFFF;
   }
   
   /* BUTTONS */
   .button5,
   .submitbutton,
   .submitbutton5 {
   font-size: 18px;
   padding: 12px 36px;
   background-color: #00CFFF;
   color: white;
   border: none;
   border-radius: 10px;
   cursor: pointer;
   display: block;
   margin: 20px auto;
   }
   
   /* CONTAINERS */
   .container10 {
   max-width: 1100px;
   margin: 0 auto;
   padding: 30px;
   }
   
   .bar {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   padding: 20px 0;
   }
   
   }
   
   @media screen and (min-width: 1024px) {
   
   /* NAVIGATION */
   .navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 40px;
   height: 70px;
   }
   
   .nav-left {
   font-size: 2rem;
   }
   
   .menu-links {
   display: flex !important;
   flex-direction: row;
   gap: 30px;
   }
   
   .menu-links a {
   font-size: 1.2rem;
   }
   
   .hamburger,
   .bottom-nav {
   display: none;
   }
   
   /* HEADER + GRADIENTS */
   .gradient4,
   .mygradient {
   padding: 40px 20px;
   text-align: center;
   }
   
   .logo-img {
   height: 60px;
   }
   
   /* TITLES & LABELS */
   .cardtext,
   .cardtext2,
   .lists,
   .onefive {
   font-size: 2rem;
   color: #00CFFF;
   text-align: center;
   margin: 30px 0;
   }
   
   .onesix {
   margin-top: 40px;
   text-align: center;
   font-size: 22px;
   font-weight: bold;
   color: #12054a;
   }
   
   /* TEXT BODY */
   .mybodytext,
   .mybodytext2,
   .description {
   font-size: 18px;
   max-width: 900px;
   margin: 30px auto;
   text-align: center;
   line-height: 1.8;
   }
   
   /* CARDS */
   .Card {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .profilecard {
   max-width: 1000px;
   margin: 40px auto;
   padding: 30px;
   font-size: 18px;
   text-align: center;
   }
   .Kevin {
   padding: 20px;
   text-align: center;
   }
   
   .founder-image img {
   width: 140px;
   height: 140px;
   border-radius: 50%;
   }
   
   /* IMAGE GRID */
   .image-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 20px;
   padding: 30px;
   }
   
   .image-container60 {
   border: 4px solid #00CFFF;
   border-radius: 12px;
   overflow: hidden;
   }
   
   .sameimage {
   height: 220px;
   background-size: cover;
   background-position: center;
   }
   
   .image-text60,
   .image-text26,
   .image-time {
   font-size: 14px;
   padding: 10px;
   text-align: center;
   }
   
   .imageparis {
   width: 200px;
   height: 200px;
   object-fit: cover;
   border-radius: 12px;
   margin: 20px auto;
   display: block;
   }
   
   /* HORIZONTAL IMAGE SCROLL */
   .image-container6 {
   display: flex;
   overflow-x: auto;
   gap: 16px;
   padding: 20px;
   border-radius: 8px;
   }
   
   .image-item6 {
   min-width: 220px;
   height: 160px;
   flex-shrink: 0;
   border: 2px solid #f1f1f1;
   border-radius: 8px;
   }
   
   /* SOCIAL ICONS */
   .myicons {
   display: flex;
   justify-content: center;
   gap: 16px;
   margin: 30px 0;
   }
   
   .myicons i {
   font-size: 24px;
   color: #00CFFF;
   }
   
   /* BUTTONS */
   .button5,
   .submitbutton,
   .submitbutton5 {
   font-size: 18px;
   padding: 12px 36px;
   background-color: #00CFFF;
   color: white;
   border: none;
   border-radius: 10px;
   cursor: pointer;
   display: block;
   margin: 20px auto;
   }
   
   /* CONTAINERS */
   .container10 {
   max-width: 1100px;
   margin: 0 auto;
   padding: 30px;
   }
   
   .bar {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   padding: 20px 0;
   }
   
   }
   
   
 
  
  
  
  
  
  
  