* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

header {
    display: flex;
    
    flex-direction:row;
    align-items:center;
    padding: 10px;
    background-image: linear-gradient(135deg, #171717, #424242);
}

h1 {
    font-family: 'Quicksand', sans-serif;
    transition: text-shadow 0.3s;
    margin-bottom: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    
}

.art img {
    transition: box-shadow 0.3s;
}

.art img:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.art:hover {
    transform:scale(110%)
}

nav {
    display: flex;
    justify-content:center;
    gap: 10px;
    margin-left:auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

nav a:hover {
    background-color: #fff;
    color: #424242;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

main {
    padding: 20px;
}

.art-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    margin-bottom: 50px;
}

.art {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
}

.art img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}


header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.full-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-image-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: box-shadow 0.3s;
}

.full-image-container img:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.full-image-container .image-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 16px;
    color: #fff;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header-icon {
    width: 50px; /* Adjust the size of the icon if needed */
    height: 50px;
    border-radius: 50%;
    margin-right: 10px; /* Add some space between the icon and the h1 text */
  }

  .arrow {
    font-size: 3rem;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    user-select: none;
  }
  
  #left-arrow {
    left: 30px;
  }
  
  #right-arrow {
    right: 30px;
  }
  
  .arrow:hover {
    opacity: 1;
  }

  .about-me-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
  }
  
  .about-me-image {
    align-self:flex-start;
    width: 60%;
    height: auto;
    object-fit: cover;
    padding-left: 90px;
  }
  
  .about-info {
    max-width: 50%;
  }

h2, h3 {
    text-align: center;
}