/* Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300&display=swap');

body {
	background-color: #000000;
    z-index: 0;
}
/* Variables CSS */
:root {
    /* Colors */
    --second-color: hsl(0, 0%, 100%);
    --title-color: hsl(0, 0%, 85%);
    --text-color: hsl(0, 0%, 58%);
    --body-color: #fff;
    --container-color: #fff;
    /* Font and Typography */
    --body-font: 'Fira Sans', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /* Font Weight */
    --font-medium: 300;
    --font-semi-bold: 600;
}
.vietnam-description, .celebrities-description{
    font-size: var(--normal-font-size);
    color: var(--body-color);
    font-weight: var(--font-medium);
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}




/* Temporary Add */
.hover_group:hover {
    opacity: 1;
  }
  
  #projectsvg, #projectsvg-2 {
    position: relative;
    width: 100%;
    vertical-align: middle;
    margin: 0;
    overflow: hidden;
  }
  
  #projectsvg svg, #projectsvg-2 svg {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .background-image {
    background-image: url('sidebar/mainsidemenu.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 175px; 
    height: 254px; 
  }

  .background-image-2 {
    background-image: url('sidebar/sidemenuextra.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 175px; 
    height: 94px; 
  }


/* 1st div container - header */ 
.header {
    height: 0px;
    width: 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    background-color: #000000;
    width: 100%;
    margin: 0 auto;
}


/* 2nd div container - sidebar */ 

.sidebar {
    margin: auto;
    width: 175px;
    position: fixed;
    top: 154px;
    left: 0;
    z-index: 1;
}


/* Adds padding between the filmstrips with the titles -- our photos & extras */
#sidetoggle {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    z-index: 1;
}

/* Inital position for launch -- idk what this is?? */
  .launch {
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
  }

/* 3rd div container - body */
.body-text-landingpage {
	font-size: 54px;
    font-family: 'Limelight', sans-serif;
	font-weight: bold;
    text-align: center;
    position: absolute;
    margin-top: 160px;
    margin-left: 175px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: rgb(145, 145, 145);
    z-index: 0;
}

/* Div containers for subsequent home pages - sidemenu & header stay the same*/
.body-text-celebrities, .body-text-vietnam {
	font-size: 38px;
    margin-top: 150px;
    margin-left: 0px;
    text-align: center;
	font-weight: bold;
	color: #999999;
    font-family: 'Limelight', sans-serif;
    z-index: 0;
}

  @media screen and (max-width: 576px){
    .body-celebrities, .body-vietnam{
        margin-top: 0;
        padding-top: 0px;
    } 
  }

  @media screen and (min-width: 576px){
    .body-celebrities, .body-vietnam{
        margin-top: 0;
        padding-top: 0px;
    } 
  }

  @media screen and (min-width: 707px){
    .body-celebrities, .body-vietnam{
        padding-top: 20px;
    }
  }


@media screen and (min-width: 867px){
    .sidemenu {
        width: 175px;
    }

    .body-celebrities, .body-vietnam{
        padding-left: 175px;
        padding-top: 20px;
    }

    #projectsvg, #projectsvg-2{
        width: 199px;
    }
}

@media screen and (max-width: 867px){
    .sidemenu, .background-image, .background-image-2{
        display: none;
    }
    
    .body p{
        font-size: 5.5vmin;
        margin-left: 0px;
    }

    .body-celebrities p, .body-vietnam p{
        font-size: 4.5vmin;
        margin-left: 0px;
    }

}

@media screen and (min-width: 1201px){

    .sidebar {
        top: 225px;
        width: 245px;
    }

    /* Sidemenu controls the image sizing themselves */
    .sidemenu {
        width: 245px;
    }

    .body p{
        margin-left: 245px;
        font-size: 60px;
    }

    .body-celebrities, .body-vietnam{
        padding-left: 245px;
        padding-top: 80px;
    }

    .header img {
        width: 1310px;
    }
    
    #projectsvg, #projectsvg-2{
        width: 279px;
    }
    .background-image {
        width: 245px; 
        height: 351px; 
    }
    
    .background-image-2 {
        width: 245px; 
        height: 131px; 
    }

}

/* Sets the styling for the scrollbars */

::-webkit-scrollbar{
    width: .7rem;
    background-color: hsl(0, 0%, 17%);
}

::-webkit-scrollbar-thumb{
    background-color: hsl(0, 0%, 47%);
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover{
    background-color: hsl(0, 0%, 55%);
}