.header { grid-area: header; ;font-size: 12px; background-color: #3C3C3C;}

.article { grid-area: article; font-family:verdana; font-size: 22px;background-color: #A9C9D5; padding-left: 1%; padding-right: 0%; padding-top:5%;}

.footer { grid-area: footer;  font-size: 30px;  text-align:center; background-color: #3C3C3C;}

.navbar { grid-area: nav;background-color: #80C778; z-index: 1000;}

#navbar{
  top: 0%; display: block; z-index: 1000;
}

body{
  display: grid;
  grid-template-areas:
    "nav nav"
    "header header"
	  "article article"
    "footer footer";
  grid-template-rows: 50px 300px 200% 70px;
  grid-template-columns: 20% 1fr;
  grid-row-gap: 5px;
  grid-column-gap: 10px;
  min-height: 100vh;
  margin: 0;
  background:#FEF5ED;
}

.center {
  text-align: center;
}

.navButton{
  height:100%;
  width:20%;
  background-color: #41733c;
  display: block;
  text-align: center;
  border: none;
  color: white;
  font-size: 100%;
  float: left;
}

.adminNavButton{
  height:100%;
  width:25%;
  background-color: #656565;
  display: block;
  text-align: center;
  border: none;
  color: white;
  font-size: 100%;
  float: left;
}

.navButton:hover{
  background-color: #9de096;
  color: #000000;
}

.adminNavButton:hover{
  background-color: #9de096;
  color: #000000;
}

textarea{
  width: 50%;
  box-sizing: border-box;
  resize: none;
}

input[type=text], select {
  width: 50%;
  padding: 12px 20px;
  margin: 16px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type=file], select {
  display: none;
}

.custom-file-upload {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 1% 5%;
  cursor: pointer;
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 2%;
}

h4{
  font-size: 50%;
}

input[type=submit], select {
    width: 50%;
    padding: 12px 20px;
    margin: 16px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

input[type=submit] {
  width: 10%;
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  margin: 12px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type=submit]:hover {
  background-color: #45a049;
}

.formlabel{
    font-size: 200%;
    margin: 5%;
}

input[type=password], select {
    width: 80%;
    padding: 12px 20px;
    margin: 16px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .item-box {
    border: 1px solid #ccc;
    margin: 10px;
    padding: 2%;
    background-color: #f9f9f9;
    width: 27.5%;
    height: 17%;
    border-radius: 4px;
    display: inline-block;
    vertical-align: top;
    left:0%;
    text-align: center;
  }
  
  /* Styling for the image */
  .item-image {
    max-width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
    height: 250px;
    width: 100%;
    overflow: hidden;
  }
  
  /* Styling for the description */
  .item-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
  }
  
  /* Styling for the link */
  .item-link {
    font-size: 16px;
    text-decoration: none;
    color: #007bff;
  }
  
  .item-link:hover {
    text-decoration: underline;
  }

  form{
    text-align: center;
  }

  .add_club_form{
    text-align: center;
  }
.login_form{
  width:60%;
  height:100%;
  margin-left:20%;
  text-align: center;
}