/* Resetting default styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* General styling for main content area */
main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

/* Body styling */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-image: linear-gradient(to right, #001228, #001a3d);
  color: rgb(255, 255, 255);
}

/* Image styling */
img {
  width: 300px;
  height: 450px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 25px;
  border-style: solid;
  border-color: white;
}

/* Player card styling */
#PupCard {
  background-image: url("Assets/brualaha_football_stadium_background_image._1bbb0fd0-1f4a-47ac-914e-258c3dcdb34d.png");
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: bottom;
  margin: 5rem 5rem;
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-radius: 25px;
  box-shadow: black 10px 10px 10px;
  width: 400px;
  height: 580px;
}

/* Header 2 styling */
h2 {
  padding-top: 10px;
  display: flex;
  justify-content: space-around;
  background-color: rgba(1, 1, 1, 0.5);
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}

/* Button styling */
.Buttons {
  background-color: rgb(255, 255, 255);
  width: 150px;
  height: 30px;
  border-radius: 25px;
}

/* Button container styling */
#btnContainer {
  padding-top: 1rem;
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

/* Form styling */
form {
  background-color: rgba(1, 1, 1, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 3rem;
  border-radius: 25px;
  padding: 10px 10px 10px 10px;
}

/* Banner styling */
#formCall {
  margin: 2rem;
  display: flex;
  justify-content: center;
  background-color: #001a3d;
  border-radius: 1px;
}

/* Add event button styling */
#addEventElement {
  display: flex;
  justify-content: center;
}

/* Label styling */
.labels {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

/* Header 1 styling */
h1 {
  font-size: 280px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  color: rgb(255, 255, 255);
  text-shadow: 10px 10px 10px rgb(0, 0, 0);
}

/* Navigation styling */
nav {
  padding: 20px;
  display: flex;
  justify-content: space-around;
  margin-top: 7.6rem;
}

a {
  text-decoration: underline;
}

/* Banner container styling */
#banner {
  font-size: 30px;
}

/* Header styling */
header {
  background-image: url("Assets/brualaha_Dogs_dressed_in_football_gear_looking_at_eachother_bef_38dd5852-9903-458c-8285-fc04fa5435fe.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 500px;
}

/* New player form styling */
#new-player-form {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 10px;
}

/* Single player main styling */
#singleMain {
  background-image: url("Assets/brualaha_american_football_stadium_background_image_perfect_wea_75d27b57-0541-46b4-b4e7-bd457b8233ac.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: bottom;
  margin: 2rem 2rem;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 25px;
}

/* Single player name element styling */
#singleNameElement {
  background-color: rgba(1, 1, 1, 0);
}

/* Single player div styling */
#singlePlayerDiv {
  display: flex;
  flex-direction: column;
  font-size: 40px;
  background-color: rgba(1, 1, 1, 0.4);
  border-radius: 25px;
}

/* Main details styling */
#mainDetails {
  padding: 1rem;
  margin: 1rem;
  font-size: 35px;
}

/* Return home button styling */
#returnHome {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 25px;
}

/* Field or bench dropdown styling */
#fieldorbench {
  width: 150px;
}
