body {
    background: linear-gradient(to bottom right, #000000, rgb(75, 60, 81) 49.58%, #111);
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif; /* Apply Poppins font as default */
}

.container-fluid {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content {
    text-align: center;
}

.thin-text {
    font-weight: 100 !important; /* Adjust the font weight to make it thinner */
}

#title {
    margin-bottom: 10px;
}

#description {
    margin: 5px auto 50px;
    width: 90%;
    max-width: 800px;
    
}

#tags1, #tags2, #tags3{
    width: 90%;
    max-width: 800px;
    margin: 10px auto;
}

.social-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
}

.social-icon {
    font-size: 24px;
    color: #eee;
    margin-bottom: 10px;
}

.social-icon:hover{
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}

.hrline-dark{
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.hrline-light{
    border-top: 1px solid rgba(51, 50, 50, 0.1);
}


/* theme switch */

.theme-switch-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2e213e; /* Darker background for the switch */
    transition: .4s;
    border-radius: 34px;
    overflow: hidden; /* Ensure icons stay within the circular knob */
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff; /* Darker knob color */
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

.slider i {
    position: absolute;
    top: 50%;
  
    transform: translate(-50%, -50%);
    font-size: 14px; /* Adjust icon size */
    color: #fff; /* Icon color */
}

.fa-sun{
    right: 1px;
}

.fa-moon{
    left: 15px;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:checked + .slider i:nth-child(2) {
    display: none; /* Hide moon icon in light mode */
}

input:not(:checked) + .slider i:nth-child(1) {
    display: none; /* Hide sun icon in dark mode */
}




input:checked + .slider {
    background-color: #000000; /* Blue color when checked */
}



.switch-label {
    margin-left: 10px;
    user-select: none; /* Prevent text selection */
    cursor: pointer;
    transition: color 0.4s;
}

.switch-label:hover {
    color: #ccc; /* Lighter text color on hover */
}




/* Poppins font */

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  