@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Unlock&family=Yeseva+One&display=swap');

/*Styling of page*/
body{
    background: #ADBBDA ; /*Set background color of page*/
    margin-bottom: 100px; /* Adjust size as needed */
    
}


#headerContainer {
    position: relative;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 7%;
  }
  
  #projectsHeader {
    font-size: 45px;
    color: #3D52A0; 
    font-family: 'Unlock', serif; 
    font-weight: 400;  
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
  }
  

  #navLinks {
    position: absolute;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    right: 30px;
    display: flex;
    gap: 20px;
    
  }
  
  .headerLinks {
    font-family: 'Unlock', serif;
    color: #3D52A0;
    cursor: pointer;
    margin: 0;
    font-size: 35px;
    text-decoration: none;
  }

.headerLinks:hover{
    color: #6475B3 !important;
    
}

/*Styling of contact content list*/
.contactContent a{
    display: block; /*Stacks content*/
    color: #3D52A0;
    font-size: medium;
    padding: 10px 15px; /*Adds space around list items*/
       
}


/*Styling of styling of contact content div container*/
.contactContent {
    display: none; /*Hides dropdown*/
    position: absolute; /*Makes drop down not move content on page*/
    background-color: #EDE8F5;
    border-radius: 20px;
    min-width: 130px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.8);/*Creates shadow background of dropdown to make it pop out*/
    z-index: 999; /* Keeps the dropdown menu on top of other content */
   
}

.contactIcon {
    height: 20px;
    width: 20px;
    margin-right: 8px;
    vertical-align: middle;
}


/* Container for Contact + dropdown */
.contactWrapper {
    position: relative;
  }

  .contactWrapper a{
    text-shadow: none;
    text-decoration: none;
  }



/* Show dropdown only on hover of wrapper */
.contactWrapper:hover .contactContent {
    display: block;
  }

  
/* Optional spacing tweak to align better */
.contactWrapper .headerLinks {
    padding-bottom: 5px;
  }


/*Puesdo class to make dropdown list contents brigher when hovered over*/
.contactWrapper a:hover{
    color: #6475B3;
    cursor: pointer;
}

  

/*Styling of Project1 container*/
.project{
    display: flex;
    margin-top: 5%;
}



/*Styling of slider container*/
#project1Slider{
    display: inline-block; /*Shrinks size of container to content inside*/
    position: relative;
    margin-left: 3%;

}


/*Conatiner of images*/
.slides {
    position: relative;
    background-color: #8697C4; /* Background acts as border */
    height: 650px;
    width: 650px;
    display: flex;
    justify-content: center;   /* Horizontally centers content */
    align-items: center;       /* Vertically centers content */
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: -2px -2px 5px hsla(0, 0%, 0%, 0.8);/*Creates shadow background of dropdown to make it pop out*/

}


/*Styling of slider container*/
.slider{
    position: relative;
   /* overflow: hidden; /*Prevents slides from overflowing out of container*/
}


/*Styling of images in slider*/
.slider img{
    display: none;
}

/*Styling of images in displaySlide class*/
img.displaySlide{
    display: block;
}

/*Styling to brighten images when hovered over*/
.slider img:hover{
    filter: brightness(1.4);
}


.slider button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    padding: 15px 15px;
    background-color: hsla(0, 0%, 0%, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 100%;

}

.prev{
    left: 0;
}


.next{
    right: 0;
}


.prev:hover { 
    background-color: hsla(0, 0%, 30%, 0.5);
}


.next:hover { 
    background-color: hsla(0, 0%, 30%, 0.5);
}



#overview{
    height: 600x;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color:  #8697C4;
    padding: 0px 20px;
    border-radius: 20px;
    box-shadow: 2px -2px 5px hsla(0, 0%, 0%, 0.8);/*Creates shadow background of dropdown to make it pop out*/
}

.outlined-text {
    text-shadow:
        -1px -1px 0 #3D52A0,
         1px -1px 0 #3D52A0,
        -1px  1px 0 #3D52A0,
         1px  1px 0 #3D52A0;
}



@media (max-width: 1700px) {

    #projectsHeader{
      font-size: 2.5vw !important;
    }
  
    .headerLinks{
      font-size: 2vw !important;
    }
  


    /*Conatiner of images*/
    .slides {

        height: 41vw;
        width: 39vw;

    
    }

    .project1, .project2{
        height: 38vw !important;
        width: 36vw !important;
    }
     
    
    .slider button{
        font-size: 2rem;
    
    }
    
 
    #overview{
        height: 41vw;
        width: 39vw;
    }
  
    .overviewh1{
        font-size: 2.5vw !important;
    }

    .overviewh2{
        font-size: 2.2vw !important;

    }

    .description{
        font-size: 1.5vw !important;
    }
   
    .slider p{
  font-size: 2vw !important;
  }
  
  }
  


  @media (max-width: 1000px) {



    #projectsHeader{
      font-size: 5vw !important;
      margin-bottom: 5%;
    }
  

    #navLinks {
   justify-content: center;
   position: relative;
   right: 0;
   }


    .headerLinks{
      font-size: 4vw !important;
    }

    /*Conatiner of images*/
    .slides {

        height: 45vw;
        width: 43vw;

    
    }

    .project1, .project2{
        height: 40vw !important;
        width: 38vw !important;
        border-radius: 5px;
    }
     
    
    .slider button{
        font-size: 4vw !important;
    
    }
    
 
    #overview{
        height: 50vw;
        width: 39vw;
    }
  
    .overviewh1{
        font-size: 2.5vw !important;
    }

    .overviewh2{
        font-size: 2.2vw !important;
        margin-top: 10% !important;
        margin-bottom: 0% !important;
        

    }

    /*
    #threath1{
        font-size: 2.5vw !important;
    }
    */

    #threath2{
        margin-top: 0% !important;
        

    }

    #threatDesc{
        
    }

    .description{
        font-size: 1.8vw !important;
        margin-top: 3% !important;
        margin-bottom: 0% !important;
    }
   
.slider button{
        font-size: 3vw;
        padding: 5px 5px;
    
    }
    

  
  }
