/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*  Should have made the css for the idle game and main page different AAAAAAAAAAA */

body {
  background-color: black;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#resources {
  width: 200px;
  height: 400px;
  background-color: white;
  
}

.option {
  display: none;
  }

#justaguy {
  display: flex;
  justify-content: center;
  width: 50px; 
}

#wrapper {
  background-color: rgba(255,255,255,0);
  height: 800px;
  display:flex;
  margin: 5% 20px;
  border-radius: 20px;
  }
#sidebar{
  background-color: rgb(255,255,255);
  height:calc(100% - 20px);
  min-width: 150px;
  padding-top:20px;
  border-style: solid;
  border-width:10px;
  border-radius: 20px;
  margin-right:5px;
  margin-bottom: 20px;
  border-color: #75946e;
  }

  #content {
   background-color: rgb(255,255, 255);
    width:100%;
    height: calc(100% - 40px);
    border-radius:20px;
    
    border-width: 10px;
    border-style: solid;
    border-color: #75946e;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
    max-width: 600px;
    min-width: 500px;
  }
  
  .sidebar-button{
    background-color: rgba(0,0,0,0);
    border-style: hidden;
    width: 100%;
    font-size: 15px;
    }

  .sidebar-button:hover{
    text-shadow: 2px 2px 5px #75946e;
  }

  footer{
    margin-top: 20vh;
  }