@font-face {
    font-family: 'Font1';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Font2';
    src: url('../fonts/PixelifySans-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}
@font-face{
    font-family: 'Font3';
    src: url('../fonts/Merriweather-Regular.ttf');
    font-display:swap;
}
body, html {
    margin: 0;
    padding: 0;
    width:100%;
 
}
canvas{
    display:block;
    position:fixed;
    width:100%;
    background-color: #32342A; 
    z-index:-500;
    height:100%;
  
}
#main-container{
    background-color: #32342A; 
    height:100vh;
    width:100%;
    z-index:1;
    display:block;
  
}
#toggaleIcon{

    position:fixed;
    width:100%;
    justify-content: center;
    z-index: 4;
    height:10vh;
    justify-content: center;
    align-items: center;
}
 
 
.toggleBarIcon:hover{
    cursor:pointer;
}
.toggleBarIcon{
    font-size:28px; 
    background-color: white;
    justify-content: center;
    display:none;
    
}
.middle-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position:fixed;
    z-index:2;
 
}
.middle-square {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 400px; /* Adjust width as needed */
    height: 500px; /* Adjust height as needed */
    border: 1px solid #cbc2c2;
    border-radius:15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color:#292929;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), /* Bottom right shadow */
                0 -4px 8px rgba(0, 0, 0, 0.3), /* Top left shadow */
                4px 0 8px rgba(0, 0, 0, 0.3), /* Right shadow */
                -4px 0 8px rgba(0, 0, 0, 0.3); /* Left shadow */
}
.middle-square-icon
{
    margin-top:1rem;
    color:#FEFCFD;
    width:100%;
    display:flex;
    flex-direction:row;
    justify-content: space-evenly;
    align-items: center;
    font-size: 2.5rem;
    text-shadow:0 4px 8px rgba(0, 0, 0, 0.2), /* Bottom right shadow */
                0 -4px 8px rgba(0, 0, 0, 0.2), /* Top left shadow */
                4px 0 8px rgba(0, 0, 0, 0.2), /* Right shadow */
                -4px 0 8px rgba(0, 0, 0, 0.2); /* Left shadow */
                    
}
.icon{
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
   
}
.icon:hover{
    cursor:pointer;
}
.column-square {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 80px;
    background: #D7B9D5;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius:20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.column-square:hover{
  cursor:pointer;
  background: #af95ae;
}
.middle-square-icon > a{
    text-decoration: none;
    color:inherit;
}
 
 
.popup.open {
    display: block;
    opacity: 1;
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 400px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: 'Font1', sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.popup.open {
    display: block;
}
.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.close{
    font-size:2rem;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.overlay.open {
    display: block;
}
.popupCopied{
    display: none;
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
    font-size:17.8px;
    font-weight: 600;
    font-family: "Font1", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    
}
.check{
    color:#68be74;
}
.popupCopied.open {
    display: block;
    opacity: 1;
}
.navlist {
    padding:0px;
    font-family: "Font2", sans-serif;
    font-optical-sizing: auto;
    
    font-weight: normal;
    font-style: normal;
    font-size:24px;
    color:#FEFCFD;
  
    
}
 
hr{
    height:3px;
    background-color:#cbc2c2;
    color:#cbc2c2;
}
.navlist > li{
    margin:10px 0;
    list-style-type: none;
    text-shadow: 3px 2px 3px rgb(0, 0, 0);
}
#mainSection{
    padding:20px;
    max-width:600px;
    margin:0 auto;
    font-size:16.2px;
     
}
div#contact {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

div#contact h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

div#contact p {
    margin-bottom: 20px;
}

div#contact form {
    display: flex;
    flex-direction: column;
}

div#contact form label {
    margin-bottom: 5px;
    font-weight: bold;
}

div#contact form input, div#contact form textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

div#contact form button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

div#contact form button:hover {
    background-color: #0056b3;
}
.blog-main{
    background-color: #32342A; 
    width:100%;
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.blog-content{
    background-color: #f0f0f0;
    padding:20px;
    width:65%;
    margin-top:2rem;
    box-shadow: 0px -2px 12px 0px rgb(0, 0, 0, 0.4)
}
.blog-content h1{
    font-size:2.25em;
    text-decoration: none;
    margin:10px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;

}
.blog-content h2{
    font-size:1.85em;
    font-family: "Lato", sans-serif;
    font-weight: 550;
    font-style: normal
}
.blog-header{
    border-bottom: 4.25px dotted #000;
}
.home-link{
    display:flex;
    flex-wrap:nowrap;
    flex-direction:row;
    justify-content: flex-end;
}
.blog-header{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.date{
    font-size: 0.9em;
    color: #666;
    
    padding: 5px 10px;
    border-radius: 5px;
}
.blog-content p{
    font-size: 1.1em;
    line-height: 1.45;
    margin-bottom: 20px;
    text-align: justify;
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}
.blog-text{
    padding:15px;
}
.blog-text p{
    padding:8.5px;
}
.article-line{
    border:none;
    border-top:2px dotted #333;
    color: #333;
    background-color:transparent;
    height:1px;
    margin:20px auto;  
    width:50%;
}
.blog-text-image-center{
    display:flex;
    flex-direction: column;
    flex-wrap:nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding:15px;
}
.object-fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Options: contain, cover, fill, scale-down, none */
}
.image-container-center{
    width:30%;
    height:350px;
    object-fit: cover;
}
.blog-text-image-right{
    display:flex;
    flex-direction:row;
    flex-wrap: nowrap;
    justify-content:flex-start;
    padding:15px;
}
.blog-text-image-right p{
    padding:10px;
}
.image-container-right{
    width:100%;
    height:300px;
    object-fit:cover;
    padding:10px;
 
}
.flex-item{
    flex:1;
}
.item1{
    flex-grow:2;
}
.item2{
    flex-grow:1;
}
.blog-text-image-left{
    display:flex;
    flex-direction:row;
    flex-wrap: nowrap;
    justify-content:flex-start;
    padding:15px;
}
.image-container-left{
    width:100%;
    height:300px;
    object-fit:cover;
 
}
.blog-text-image-left p{
    padding:10px;
}
.blog-text-list{
    padding:15px;
}
.styled-list{
 
    margin:0;
    padding:0;
    font-size: 1.1em;
    line-height: 1.45;
    margin-bottom: 20px;
    text-align: justify;
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
    padding:5px;
    
} 
.styled-list li{
    margin:0 15px;
}
.blog-footer{
    border-top: 4.25px dotted;
    /*box-shadow: 0px -2px 12px 0px rgb(0, 0, 0, 0.4);*/
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    flex-wrap:nowrap;
 

}
.author-info {
    text-align: center;
    margin-bottom: 20px;

}
.date-footer {
    font-size: .95em;
    color: #666;

}
.list-column{
    display:flex;
    flex-direction:column;
}
.list-row{
    display:flex;
    justify-content: space-between;
}
.sub-head{
    font-size:1.45em;
    font-weight:500;
    font-family:"Font3", serif;
}