/***************************************
CORE STYLING (*, HTML, BODY)
***************************************/

* {
    padding: 0;
    margin: 0;
  }
  
  :root {
  
    /* utilities */
  
    /* color variables */
    --box-shadow-color: gray;
    --bg-color: lightgray;
    --nav-color: #DAD3FF;
    --nav-color-hover: #e9e5ff;
    --main-color: white;
    --volunteer-search-color: gray;
    --volunteer-card-color: white;
    --footer-color: #DAD3FF;
  
    /* border radii */
    --border-radius-m: 0.5rem;
  
    /* font size */
    --font-size-s: .8rem;
    --font-size-m: 1rem;
    --font-size-l: 1.4rem;
  }
  
  html,
  body {
    background-color: var(--bg-color);
    height: 100vh;
  }
  
  body {
    display: flex;
    flex-direction: column;
    font-family: arial;
  }
  
  /***************************************
  NAVIGATION STYLING
  ***************************************/
  
  nav {
    background-color: bisque;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-style: solid;
    border-color: black;
    border-width: 2px;
  } 
  
  .nav_list-item {
    cursor: pointer;
    margin-right: 10px;
    font-size: 30px;
    margin-right: 40px;
   
  }
  
  .nav_list-item:hover {
    background-color: var(--nav-color-hover);
  }
  
  /***************************************
  MAIN SECTION STYLING
  ***************************************/
  
  main { 
    width: 100%; 
    background-color: var(--main-color);
    flex-grow: 1;
   
  }

  
  /***************************************
  HOME PAGE STYLING
  ***************************************/
  
  #page__home {
    margin: 20px auto; 
    padding-top: 20px;
    width: 450px;
    height: 450px;
    background-color: green;
    cursor: pointer;
    background-image: url("images/gameboxes.png"); 
    background-size: cover;
  }

  #game_box {
     margin: 20px auto; 
    display:flex;
    flex-wrap: wrap;
    width: 1000px;
    height: 500px;
    background-color: brown;
    cursor: pointer;
    gap: 20px;
    
  }


#thedetails{
  margin:20px auto; 
  text-align: center;
  padding-top:40px;
  padding-left: 20px;
  padding-right: 20px;
  width: 1000px;
  height: 800px;
  background-color: aqua;
  cursor: pointer;
  border-style: solid;

  
 }

 p{
  font-size: 25px;
  font-weight: 500;
 }


  #page_gizmos {
    margin: 20px auto; 
    width: 200px;
    height: 200px;
    background-color: brown;
    cursor: pointer;
    background-image: url("images/gizmos.png");
     background-size: cover;
     
  }

#sresult{
  width:30px;
  height: 10px;
  background-color: yellow;
  border-radius: 15px;
  border-style:solid;
  border-color: black;
  border-width: 5px;
  
}


  #page_golf {
    margin: 20px auto; 
    width: 200px;
    height: 200px;
    cursor: pointer;
    background-image: url("images/golf.png");
     background-size: cover;
     
  }



  #page_azul {
    margin: 20px auto; 
    width: 200px;
    height: 200px;
    cursor: pointer;
    background-image: url("images/azul.png");
     background-size: cover;
     flex-direction: row;
  }

  
  #page_potionexplosion {
    margin: 20px auto; 
    width: 200px;
    height: 200px;
    cursor: pointer;
    background-image: url("images/potionexplosion.png");
     background-size: cover;
     flex-direction: row;
  }

  
  #page_hearts {
    margin: 20px auto; 
    /* padding-top: 20px; */
    width: 200px;
    height: 200px;
    cursor: pointer;
    background-image: url("images/hearts.png");
     background-size: cover;
     flex-direction: row;
  }

  
  
  #page_splendor {
    margin: 20px auto; 
    width: 200px;
    height: 200px;
    cursor: pointer;
    background-image: url("images/splendor.png");
     background-size: cover;
     
  }


  

  
  #page_wingspan {
    margin: 20px auto; 
    /* padding-top: 20px; */
    width: 200px;
    height: 200px;
    cursor: pointer;
    background-image: url("images/wingspan.png");
     background-size: cover;
     flex-direction: row;
  }
  

  #page_king_of_tokyo {
    margin: 20px auto; 
    width: 200px;
    height: 200px;
    cursor: pointer;
    background-image: url("images/king_of_tokyo.png");
     background-size: cover;
     flex-direction: row;
  }
  


  


/* 
  #page_detail {
    margin: 20px auto; 
    padding-top: 20px;
    width: 450px;
    height: 450px;
    background-color:brown;
    cursor: pointer;
    background-image: url("gameboxes.png");
    background-size: cover;
 
  }
   */
  .card__title {
    text-align: center;
    font-size: 80px;
    color:white;
    cursor: pointer;
  }
  
  /***************************************
  VOLUNTEER LIST PAGE STYLING
  ***************************************/
  
  .page__volunteer-list {
    display: flex;
    flex-direction: column;
  }
   
  .header {
    font-size: 2rem;
    text-align: center;
    margin: 20px 0;
  
  }
  .search_input{
    flex-direction: row;
  } 
  
  .text_input {
    width: 150px;
  }
  
  .volunteerCard {
    border-radius: var(--border-radius-m);
    height: 400px;
    width: 80%; 
    margin: 20px auto;
    box-shadow: 2px -2px 8px var(--box-shadow-color); 
  }
  
  .volunteerCard__image
   {
    border-top-right-radius: var(--border-radius-m);
    border-top-left-radius: var(--border-radius-m);
    overflow: hidden;
    background-color: white;
    height: 150px;
    width: 100%; 
  }
  
  .volunteerCard__content {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  
  .volunteerCard__description {
    background-color: var(--volunteer-card-color);
    border-radius: var(--border-radius-m);
    padding: 10px;
    font-size: var(--font-size-s);
  }
  
  /***************************************
  VOLUNTEER DETAIL PAGE STYLING
  ***************************************/
  
  
  
  /***************************************
  FOOTER STYLING
  ***************************************/
  
  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    background-color: var(--footer-color);
  }