

.floppy{
    display: flex; 
   
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: -1;
    top: 10px; 
}

@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 16px;
    }
    .your-container {
        flex-direction: column;
        align-items: center;
    }
    .grid-container {
        grid-template-columns: 1fr; 
    }
}




.col-container{
    align-items: center;
    display:flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 10px 20px;

}


.home-button {
    font-size: 100px;
    color: #fff; 
    text-decoration: none;
    display: flex; 
    align-items: center; 
    padding: 5px;
    transition: transform 0.3s, color 0.3s;
}

.home-button:hover {
    color: #007bff;
    transform: scale(1.1);
}


.art{
    width:1000px;
    left: 200px;
    position: absolute;
}
.sub {
    font-family: 'Space Mono', monospace;;
    font-size: 40px;
    color: #eeeeee; 
    margin-left: 50px;
}


.blog{
    width:500px;
}

@font-face {
    font-family: 'Space Mono', monospace;;
    src: url(sans.ttf);
}



.menu a {
    font-family: 'Space Mono', monospace;;
    font-weight: 600;
    font-size: 40px;
    color: #eeeeee ;
    text-decoration: none; 
    cursor: pointer;
    transition: color 0.3s;
}


.card{
    border: solid white ;
    border-radius: 5px;
    margin:5px;
    align-items: left;
 
}

a{
    text-decoration: none; 
    cursor: pointer;
    color:white;
    font-family: 'Space Mono', monospace;;
    transition: color 0.3s;

}

h2{
    
    font-family: 'Space Mono', monospace;;
    margin-left: 20px;
    color: white;
    font-size: calc(1rem + 0.5vw);
    
}

 a:hover {
    color: #666666; 
}

a:hover .card {
    transform: scale(1.05);
    border:3px solid white;
    transition: transform 0.3s, border 0.3s;
}

p {
    font-family: 'Space Mono', monospace;;
  
    color: #eeeeee;
    font-size: calc(1rem + 0.5vw);
    margin-left: 50px;
}


#floppyDiskContainer {
    width: 800px;
    height: 600px;
    pointer-events: auto; /* Allow pointer events */
    margin-top: 30px;  /* Translucent background */
    backdrop-filter: blur(12px);
    position:relative;
    z-index: 2;    
}



img {
display: block;
width: 900px;
max-width: 100%;
    height: auto;
}


i{
    color: white;
    font-size:22px;
    margin:10px;
    font-family: 'Space Mono', monospace;;
}


.flee{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#links {
    color: #fff; 
    text-align: center;
}

#links .sub {
    text-align: left;
    margin-left: 50px; 
}

.cole {
    display: flex;
    flex-direction: row;
    justify-content:center;

    gap: 30px; 
}

.flee a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.flee i {
    font-size: 24px;
    margin-right: 10px;
}

.flee p {
    font-size: 16px; 
    margin: 0;
}

h3{
    
    padding-top: 8px;
    font-family: 'Space Mono', monospace;;
    font-size: calc(1rem + 0.5vw);
    color: #eeeeee;
}




body {
    background-color: #222222;
    height: 100vh; 
    margin: 0; 
    padding: 0;
    font-family: 'Space Mono', monospace;
}


.title {
    font-size: 3rem; 
    color: #eeeeee;
    text-align: center; 
    margin-bottom: 30px;
    margin-top: 30px;
}


@keyframes rotate {
    from {
      rotate: 0deg;
    }
    
    50% {
      scale: 1 1.5;
    }
    
    to {
      rotate: 360deg;
    }
  }
  
  #blob {
    background-color: white;
    height: 50%;
    aspect-ratio: 1;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(to right, aquamarine, mediumpurple);
    animation: rotate 20s infinite;
    opacity: 0.8;
    z-index: -2;
  }
  
  #blur {
    position: fixed; /* Ensures the blur effect applies across the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(12vmax); /* Adjust blur intensity if needed */
    z-index: -1;
  }

#about, #blogs, #projects, #links {
    padding: 20px;
    text-align: center;
}

h1.sub {
    font-size: 2rem;
    margin: 10px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px;
}

.card {
    border: solid white;
    border-radius: 5px;
    margin: 10px;
    padding: 15px;
    background-color: #333;
    text-align: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
    border: 3px solid white;
}


.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    margin: 20px 0;
}

.menu a {
    font-size: 1.7rem;
    color: #eeeeee;
    font-weight: 600;
    text-decoration: none;
    padding: 30px 2.5rem;
    border: 1px solid transparent;
    transition: color 0.3s, border 0.3s;
}

.menu a:hover {
    color: #666666;

}


#links .cole {
    flex-direction: column; 
    gap: 20px;
}

.flee i {
    font-size: 1.5rem;
}


@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .title {
        font-size: 1.5rem;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .grid-container {
        grid-template-columns: 1fr; 
    }

    #links .cole {
        gap: 15px;
    }
}


#particles-js {
    position: absolute;
    width: 100%;
    top:0px;    
    height: 100%;
    background-color: #222222; /* Customize the background color */
    z-index: -1; /* Send it behind your content */
  }
