body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* FONTS:
font-family: "Play", sans-serif;
font-family: "Sedgwick Ave Display", cursive;
font-family: "Sedgwick Ave", cursive; 
*/

/*TOP BANNER*/
#top-banner{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    background-color: rgb(24, 23, 23);
    padding-bottom: 1rem;
}
#logo{
    width: 80vw;
    max-width: 500px;
    height: auto;
}
#top-banner h2{
    font-size: 3rem;
    font-family: "Sedgwick Ave Display", cursive;
    font-weight: 100;
    color: #e42d2de8;
}
#top-banner h3{
    font-family: "Play", sans-serif;
    font-weight: 100;
    font-style: italic;
    color: #d2d2d2;
}
 
#navbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 850px;
    padding: .5rem .3rem 2rem .3rem;
}
#back-button{
    position: relative;
    left: 0;
}
#creative-collective-logo{
    flex-grow: 1;
    text-align: center;
}

#personal-summary{
    display: flex;
    flex-direction:column;
    text-align: center;
    align-items: center;
    border-top: #303030 double 5px;
    padding: 2rem 0 0 0;
    border-bottom: #303030 double 5px;
    max-width: 700px;
}
#personal-summary h4{
    padding: 2rem 0 0.3rem 0;
    font-family: "Sedgwick Ave Display", cursive;
    font-optical-sizing: auto;
    text-transform: lowercase;
    font-weight: 100;
    color: #e42d2de8;
    padding: 0;
    margin: 0;
}
#personal-summary p{
    padding: 0 0 0 0.5rem;
    font-weight: 200;
    font-family: "Play", sans-serif;
    font-optical-sizing: auto;
    color: #dbd9d9;
}
#personal-summary a{
    background-color: rgb(24, 23, 23);
    color: #dbd9d9;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-family: "Sedgwick Ave", cursive; 
    font-optical-sizing: auto;
    border: #3c3c3c double 5px;
    text-decoration: #303030 double underline;
    text-underline-offset:7px;
    transition:.5s ease;
    position: relative;
    bottom: -40px;
}
#personal-summary a:hover{
    text-decoration: #ffffff solid underline;
}


/* MAIN PAGE */

#main-page{
    max-width: 100vw;
    display: flex;
    flex-direction:column ;
    justify-content: center;
    align-items:center;
    font-family: "Noto Sans", sans-serif;
    background-color: rgb(24, 23, 23);
    padding: 0 .6rem;
}

/*CAROUSEL*/
#main-image-container{
    max-width: 900px;
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}
#main-image-container-inner{
    display: flex;
    justify-content: center;
}

#thumbnail-image{
    padding: 6px 2px;
}
  
  /* Hide the images by default */
  .main-image {
    display: none;
  }


  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    width: auto;
    padding: 4px 10px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
  }
  
  .arrows{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    color: #b71e1e;
  }
  
  /* Number text (1/3 etc) */
  .number-text {
    color: #f2f2f2;
    font-family: "Lora", serif;
    font-size: .8rem;
    padding: .3rem;
    position: relative;
    top: 0;
  }

  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }

/*CONTACTS & FACTS*/
#contacts-facts-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

    max-width: 700px;
    padding: 3rem 0 ;
}
#contacts-facts-container-inner{
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: aliceblue;
}
#fun-facts{
    font-family: "Play", sans-serif;
    font-size: 1.1rem;

}
#fun-facts h4{
    font-size: 3rem;
    font-family: "Sedgwick Ave Display", cursive;
    font-optical-sizing: auto;
    font-weight: 100;
    color: #d2d2d2;
    padding: 1rem 0;
    margin: 0;
}
#contacts {
    font-family: "Play", sans-serif;
    font-size: 1.1rem;

}
#contacts h4{
    font-size: 3rem;
    font-family: "Sedgwick Ave Display", cursive;
    font-optical-sizing: auto;
    font-weight: 100;
    color: #d2d2d2;
    padding: 1rem 1.9rem;
    margin: 0;
}
#contacts ul{
    list-style-type: none;
}
#contacts li{
    padding: .5rem 0;
}
#contacts a{
    text-decoration: none;
    color: #f1f0f0;
    text-decoration: #ffffff wavy underline;
    text-underline-offset: 5px;
}


/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
    #top-banner h3{
        font-size: 1.8rem
    }
    #personal-summary h4 {
      font-size: 5rem;
    }
    #personal-summary p{
        font-size: 1.5rem;
    }
    #personal-summary a{
        font-size: 1.7rem;
    }
    #creative-collective-logo img{
        height: 32px;        
    }  
    #thumbnail-images{
        width: 20%;
    }


  }
  
  /* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
    #top-banner h3{
        font-size: 1.5rem
    }
    #personal-summary h4 {
        font-size: 3rem;
    }
    #personal-summary p{
        font-size: 1.2rem;
    }
    #personal-summary a{
        font-size: 1.6rem;
    }
    #creative-collective-logo img{
        height: 25px;        
    }
    #thumbnail-images{
        width: 95%;
    }
}
@media screen and (max-width: 300px) {
    #personal-summary h4 {
        font-size: 2.5rem;
    }
    #personal-summary p{
        font-size: 1rem;
    }
    #creative-collective-logo img{
        height: 20px;        
    }
    
}

/*FOOTER CSS*/

#footer{
    background-color: #262626;
    max-width: 100vw;
    color: aliceblue;

}
#container{
    padding: 1.5rem;
    max-width: 900px;
}
#footer-col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    font-size: 0.9rem;;
}
#footer img{
    width: 100%;
    height:auto;
    max-width: 250px;
}
#footer h6{
    font-size: 1rem;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    font-weight: 900;
}
#footer a{
    text-decoration: none transparent;
    color: aliceblue;
    font-family: "Noto Sans", sans-serif;
}
#footer a:hover{
    text-decoration: underline #db652b 0.15rem;
    transition: 300ms;
}
#copyright{
    background-color: black;
    color: grey;

    display: flex;
    justify-content: center;
    text-align: center;    
    position: relative;

    bottom: 0;
    font-family: "Noto Sans", sans-serif;
}
